1*ff6d749dStron /* $NetBSD: ip_match.h,v 1.1.1.1 2011/03/02 19:32:44 tron Exp $ */ 2*ff6d749dStron 3*ff6d749dStron #ifndef _IP_MATCH_H_INCLUDED_ 4*ff6d749dStron #define _IP_MATCH_H_INCLUDED_ 5*ff6d749dStron 6*ff6d749dStron /*++ 7*ff6d749dStron /* NAME 8*ff6d749dStron /* ip_match 3h 9*ff6d749dStron /* SUMMARY 10*ff6d749dStron /* IP address pattern matching 11*ff6d749dStron /* SYNOPSIS 12*ff6d749dStron /* #include <ip_match.h> 13*ff6d749dStron /* DESCRIPTION 14*ff6d749dStron /* .nf 15*ff6d749dStron 16*ff6d749dStron /* 17*ff6d749dStron * Utility library. 18*ff6d749dStron */ 19*ff6d749dStron #include <vstring.h> 20*ff6d749dStron 21*ff6d749dStron /* 22*ff6d749dStron * External interface. 23*ff6d749dStron */ 24*ff6d749dStron extern char *ip_match_parse(VSTRING *, char *); 25*ff6d749dStron extern char *ip_match_save(const VSTRING *); 26*ff6d749dStron extern char *ip_match_dump(VSTRING *, const char *); 27*ff6d749dStron extern int ip_match_execute(const char *, const char *); 28*ff6d749dStron 29*ff6d749dStron /* LICENSE 30*ff6d749dStron /* .ad 31*ff6d749dStron /* .fi 32*ff6d749dStron /* The Secure Mailer license must be distributed with this software. 33*ff6d749dStron /* AUTHOR(S) 34*ff6d749dStron /* Wietse Venema 35*ff6d749dStron /* IBM T.J. Watson Research 36*ff6d749dStron /* P.O. Box 704 37*ff6d749dStron /* Yorktown Heights, NY 10598, USA 38*ff6d749dStron /*--*/ 39*ff6d749dStron 40*ff6d749dStron #endif 41