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