17c478bd9Sstevel@tonic-gate /* 2*058561cbSjbeck * Copyright (c) 1999-2003, 2006 Sendmail, Inc. and its suppliers. 37c478bd9Sstevel@tonic-gate * All rights reserved. 47c478bd9Sstevel@tonic-gate * 57c478bd9Sstevel@tonic-gate * By using this file, you agree to the terms and conditions set 67c478bd9Sstevel@tonic-gate * forth in the LICENSE file which can be found at the top level of 77c478bd9Sstevel@tonic-gate * the sendmail distribution. 87c478bd9Sstevel@tonic-gate * 97c478bd9Sstevel@tonic-gate * 10*058561cbSjbeck * $Id: milter.h,v 8.41 2006/05/22 23:23:55 ca Exp $ 117c478bd9Sstevel@tonic-gate */ 127c478bd9Sstevel@tonic-gate 137c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 147c478bd9Sstevel@tonic-gate 157c478bd9Sstevel@tonic-gate /* 167c478bd9Sstevel@tonic-gate ** MILTER.H -- Global definitions for mail filter. 177c478bd9Sstevel@tonic-gate */ 187c478bd9Sstevel@tonic-gate 197c478bd9Sstevel@tonic-gate #ifndef _LIBMILTER_MILTER_H 207c478bd9Sstevel@tonic-gate # define _LIBMILTER_MILTER_H 1 217c478bd9Sstevel@tonic-gate 227c478bd9Sstevel@tonic-gate #include "sendmail.h" 237c478bd9Sstevel@tonic-gate #include "libmilter/mfapi.h" 247c478bd9Sstevel@tonic-gate 257c478bd9Sstevel@tonic-gate /* socket and thread portability */ 267c478bd9Sstevel@tonic-gate # include <pthread.h> 277c478bd9Sstevel@tonic-gate typedef pthread_t sthread_t; 287c478bd9Sstevel@tonic-gate typedef int socket_t; 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate #endif /* ! _LIBMILTER_MILTER_H */ 31