2019-03-06 23:14:23 +01:00
|
|
|
/* $OpenBSD: match.h,v 1.19 2019/03/06 22:14:23 dtucker Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-09-16 04:29:08 +02: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 05:04:51 +02:00
|
|
|
#ifndef MATCH_H
|
|
|
|
#define MATCH_H
|
|
|
|
|
2001-12-06 19:06:05 +01:00
|
|
|
int match_pattern(const char *, const char *);
|
2015-05-04 08:10:48 +02:00
|
|
|
int match_pattern_list(const char *, const char *, int);
|
2019-03-06 23:14:23 +01:00
|
|
|
int match_usergroup_pattern_list(const char *, const char *);
|
2015-05-04 08:10:48 +02:00
|
|
|
int match_hostname(const char *, const char *);
|
2001-07-04 06:02:36 +02:00
|
|
|
int match_host_and_ip(const char *, const char *, const char *);
|
2002-03-05 02:42:42 +01:00
|
|
|
int match_user(const char *, const char *, const char *, const char *);
|
2001-07-04 06:02:36 +02:00
|
|
|
char *match_list(const char *, const char *, u_int *);
|
2018-07-04 15:49:31 +02:00
|
|
|
char *match_filter_blacklist(const char *, const char *);
|
|
|
|
char *match_filter_whitelist(const char *, const char *);
|
2001-03-11 02:49:19 +01:00
|
|
|
|
2008-06-10 14:59:10 +02:00
|
|
|
/* addrmatch.c */
|
|
|
|
int addr_match_list(const char *, const char *);
|
2010-02-26 21:55:05 +01:00
|
|
|
int addr_match_cidr_list(const char *, const char *);
|
2000-03-26 05:04:51 +02:00
|
|
|
#endif
|