diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-24 05:25:11 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-24 05:25:11 +0000 |
commit | ebcf48afda62ee71d55aaad072474a237d7ee281 (patch) | |
tree | c877326e596aa0c39d2e4559436021cac3ca76d2 /usr.bin/ssh/match.h | |
parent | c622544221e69be6ab86a4cf84115b2d94a39d86 (diff) |
move ip+hostname check to match.c
Diffstat (limited to 'usr.bin/ssh/match.h')
-rw-r--r-- | usr.bin/ssh/match.h | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/usr.bin/ssh/match.h b/usr.bin/ssh/match.h index 09c931168da..5faf668190f 100644 --- a/usr.bin/ssh/match.h +++ b/usr.bin/ssh/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.8 2001/06/24 05:25:10 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 @@ -16,24 +14,10 @@ #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, u_int len); - -/* - * Returns first item from client-list that is also supported by server-list, - * caller must xfree() returned string. - */ +int match_pattern(const char *s, const char *pattern); +int match_hostname(const char *host, const char *pattern, u_int len); +int match_host_and_ip(const char *host, const char *ip, const char *p); +int match_user(const char *u, const char *h, const char *i, const char *p); char *match_list(const char *client, const char *server, u_int *next); #endif |