xref: /freebsd/contrib/sendmail/include/libmilter/milter.h (revision ee7b0571c2c18bdec848ed2044223cc88db29bd8)
106f25ae9SGregory Neil Shapiro /*
25dd76dd0SGregory Neil Shapiro  * Copyright (c) 1999-2003, 2006 Proofpoint, Inc. and its suppliers.
306f25ae9SGregory Neil Shapiro  *	All rights reserved.
406f25ae9SGregory Neil Shapiro  *
506f25ae9SGregory Neil Shapiro  * By using this file, you agree to the terms and conditions set
606f25ae9SGregory Neil Shapiro  * forth in the LICENSE file which can be found at the top level of
706f25ae9SGregory Neil Shapiro  * the sendmail distribution.
806f25ae9SGregory Neil Shapiro  *
906f25ae9SGregory Neil Shapiro  *
10*4313cc83SGregory Neil Shapiro  *	$Id: milter.h,v 8.42 2013-11-22 20:51:27 ca Exp $
1106f25ae9SGregory Neil Shapiro  */
1206f25ae9SGregory Neil Shapiro 
1306f25ae9SGregory Neil Shapiro /*
1440266059SGregory Neil Shapiro **  MILTER.H -- Global definitions for mail filter.
1506f25ae9SGregory Neil Shapiro */
1606f25ae9SGregory Neil Shapiro 
1706f25ae9SGregory Neil Shapiro #ifndef _LIBMILTER_MILTER_H
1806f25ae9SGregory Neil Shapiro # define _LIBMILTER_MILTER_H	1
1906f25ae9SGregory Neil Shapiro 
2006f25ae9SGregory Neil Shapiro #include "sendmail.h"
2140266059SGregory Neil Shapiro #include "libmilter/mfapi.h"
2206f25ae9SGregory Neil Shapiro 
2306f25ae9SGregory Neil Shapiro /* socket and thread portability */
2406f25ae9SGregory Neil Shapiro # include <pthread.h>
2506f25ae9SGregory Neil Shapiro typedef pthread_t	sthread_t;
2606f25ae9SGregory Neil Shapiro typedef int		socket_t;
2706f25ae9SGregory Neil Shapiro 
2806f25ae9SGregory Neil Shapiro #endif /* ! _LIBMILTER_MILTER_H */
29