aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/match.h')
-rw-r--r--crypto/openssh/match.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/crypto/openssh/match.h b/crypto/openssh/match.h
deleted file mode 100644
index 564f5abf97b4..000000000000
--- a/crypto/openssh/match.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Author: Tatu Ylonen <ylo@cs.hut.fi>
- * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
- * All rights reserved
- * This file contains various auxiliary functions related to multiple
- * precision integers.
- *
- * As far as I am concerned, the code I have written for this software
- * can be used freely for any purpose. Any derived versions of this
- * software must be clearly marked as such, and if the derived work is
- * incompatible with the protocol description in the RFC file, it must be
- * called by a name other than "ssh" or "Secure Shell".
- */
-#ifndef MATCH_H
-#define MATCH_H
-
-/*
- * Returns true if the given string matches the pattern (which may contain ?
- * and * as wildcards), and zero if it does not match.
- */
-int match_pattern(const char *s, const char *pattern);
-
-/*
- * Tries to match the host name (which must be in all lowercase) against the
- * comma-separated sequence of subpatterns (each possibly preceded by ! to
- * indicate negation). Returns -1 if negation matches, 1 if there is
- * a positive match, 0 if there is no match at all.
- */
-int match_hostname(const char *host, const char *pattern, unsigned int len);
-
-#endif