xref: /titanic_44/usr/src/cmd/ssh/include/match.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*	$OpenBSD: match.h,v 1.12 2002/03/01 13:12:10 markus Exp $	*/
2*7c478bd9Sstevel@tonic-gate 
3*7c478bd9Sstevel@tonic-gate #ifndef	_MATCH_H
4*7c478bd9Sstevel@tonic-gate #define	_MATCH_H
5*7c478bd9Sstevel@tonic-gate 
6*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
7*7c478bd9Sstevel@tonic-gate 
8*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
9*7c478bd9Sstevel@tonic-gate extern "C" {
10*7c478bd9Sstevel@tonic-gate #endif
11*7c478bd9Sstevel@tonic-gate 
12*7c478bd9Sstevel@tonic-gate 
13*7c478bd9Sstevel@tonic-gate /*
14*7c478bd9Sstevel@tonic-gate  * Author: Tatu Ylonen <ylo@cs.hut.fi>
15*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
16*7c478bd9Sstevel@tonic-gate  *                    All rights reserved
17*7c478bd9Sstevel@tonic-gate  *
18*7c478bd9Sstevel@tonic-gate  * As far as I am concerned, the code I have written for this software
19*7c478bd9Sstevel@tonic-gate  * can be used freely for any purpose.  Any derived versions of this
20*7c478bd9Sstevel@tonic-gate  * software must be clearly marked as such, and if the derived work is
21*7c478bd9Sstevel@tonic-gate  * incompatible with the protocol description in the RFC file, it must be
22*7c478bd9Sstevel@tonic-gate  * called by a name other than "ssh" or "Secure Shell".
23*7c478bd9Sstevel@tonic-gate  */
24*7c478bd9Sstevel@tonic-gate 
25*7c478bd9Sstevel@tonic-gate int	 match_pattern(const char *, const char *);
26*7c478bd9Sstevel@tonic-gate int	 match_pattern_list(const char *, const char *, u_int, int);
27*7c478bd9Sstevel@tonic-gate int	 match_hostname(const char *, const char *, u_int);
28*7c478bd9Sstevel@tonic-gate int	 match_host_and_ip(const char *, const char *, const char *);
29*7c478bd9Sstevel@tonic-gate int	 match_user(const char *, const char *, const char *, const char *);
30*7c478bd9Sstevel@tonic-gate char	*match_list(const char *, const char *, u_int *);
31*7c478bd9Sstevel@tonic-gate 
32*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
33*7c478bd9Sstevel@tonic-gate }
34*7c478bd9Sstevel@tonic-gate #endif
35*7c478bd9Sstevel@tonic-gate 
36*7c478bd9Sstevel@tonic-gate #endif /* _MATCH_H */
37