]> andersk Git - openssh.git/blobdiff - match.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / match.h
diff --git a/match.h b/match.h
index 09c931168da9b877726bfd853c12bd1029b2e2fc..18f6830703b7174f4b08b9515576b30502730590 100644 (file)
--- a/match.h
+++ b/match.h
@@ -1,11 +1,9 @@
-/*     $OpenBSD: match.h,v 1.7 2001/03/10 17:51:04 markus Exp $        */
+/* $OpenBSD: match.h,v 1.14 2008/06/10 03:57:27 djm 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
 #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);
+int     match_pattern(const char *, const char *);
+int     match_pattern_list(const char *, const char *, u_int, int);
+int     match_hostname(const char *, const char *, u_int);
+int     match_host_and_ip(const char *, const char *, const char *);
+int     match_user(const char *, const char *, const char *, const char *);
+char   *match_list(const char *, const char *, u_int *);
 
-/*
- * 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, u_int len);
-
-/*
- * Returns first item from client-list that is also supported by server-list,
- * caller must xfree() returned string.
- */
-char   *match_list(const char *client, const char *server, u_int *next);
+/* addrmatch.c */
+int     addr_match_list(const char *, const char *);
 
 #endif
This page took 0.0326 seconds and 4 git commands to generate.