]> andersk Git - openssh.git/blobdiff - match.h
- (bal) renabled 'catman-do:' and fixed it. So now catman pages should
[openssh.git] / match.h
diff --git a/match.h b/match.h
index 4625d97691fb418d84c306da395b4e16b4c611ab..09c931168da9b877726bfd853c12bd1029b2e2fc 100644 (file)
--- a/match.h
+++ b/match.h
@@ -1,3 +1,18 @@
+/*     $OpenBSD: match.h,v 1.7 2001/03/10 17:51:04 markus Exp $        */
+
+/*
+ * 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
 
@@ -10,9 +25,15 @@ 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 true if there is a positive match; zero
- * otherwise.
+ * 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, u_int len);
+
+/*
+ * Returns first item from client-list that is also supported by server-list,
+ * caller must xfree() returned string.
  */
-int     match_hostname(const char *host, const char *pattern, unsigned int len);
+char   *match_list(const char *client, const char *server, u_int *next);
 
 #endif
This page took 0.039655 seconds and 4 git commands to generate.