2002-03-05 04:42:42 +03:00
|
|
|
/* $OpenBSD: match.h,v 1.12 2002/03/01 13:12:10 markus Exp $ */
|
2001-01-29 10:39:26 +03:00
|
|
|
|
2000-09-16 06:29:08 +04:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* 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".
|
|
|
|
*/
|
2000-03-26 07:04:51 +04:00
|
|
|
#ifndef MATCH_H
|
|
|
|
#define MATCH_H
|
|
|
|
|
2001-12-06 21:06:05 +03:00
|
|
|
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);
|
2001-07-04 08:02:36 +04:00
|
|
|
int match_host_and_ip(const char *, const char *, const char *);
|
2002-03-05 04:42:42 +03:00
|
|
|
int match_user(const char *, const char *, const char *, const char *);
|
2001-07-04 08:02:36 +04:00
|
|
|
char *match_list(const char *, const char *, u_int *);
|
2001-03-11 04:49:19 +03:00
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
#endif
|