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