2001-06-25 05:17:53 +00:00
|
|
|
/* $OpenBSD: match.h,v 1.8 2001/06/24 05:25:10 markus Exp $ */
|
2001-01-29 07:39:26 +00:00
|
|
|
|
2000-09-16 02:29:08 +00: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 03:04:51 +00:00
|
|
|
#ifndef MATCH_H
|
|
|
|
#define MATCH_H
|
|
|
|
|
2001-06-25 05:17:53 +00:00
|
|
|
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);
|
2001-03-11 01:49:19 +00:00
|
|
|
char *match_list(const char *client, const char *server, u_int *next);
|
|
|
|
|
2000-03-26 03:04:51 +00:00
|
|
|
#endif
|