1 #ifndef _ADDR_MATCH_LIST_H_INCLUDED_
2 #define _ADDR_MATCH_LIST_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /*	addr 3h
7 /* SUMMARY
8 /*	address list membership
9 /* SYNOPSIS
10 /*	#include <addr_match_list.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15   * Utility library.
16   */
17 #include <match_list.h>
18 
19  /*
20   * External interface.
21   */
22 #define ADDR_MATCH_LIST MATCH_LIST
23 
24 #define addr_match_list_init(o, f, p) \
25 	match_list_init((o), (f), (p), 1, match_hostaddr)
26 #define addr_match_list_match(l, a) \
27 	match_list_match((l), (a))
28 #define addr_match_list_free	match_list_free
29 
30 /* LICENSE
31 /* .ad
32 /* .fi
33 /*	The Secure Mailer license must be distributed with this software.
34 /* AUTHOR(S)
35 /*	Wietse Venema
36 /*	IBM T.J. Watson Research
37 /*	P.O. Box 704
38 /*	Yorktown Heights, NY 10598, USA
39 /*--*/
40 
41 #endif
42