1 /* $NetBSD: trigger.h,v 1.1.1.3 2013/09/25 19:06:37 tron Exp $ */ 2 3 #ifndef _TRIGGER_H_INCLUDED_ 4 #define _TRIGGER_H_INCLUDED_ 5 6 /*++ 7 /* NAME 8 /* trigger 3h 9 /* SUMMARY 10 /* client interface file 11 /* SYNOPSIS 12 /* #include <trigger.h> 13 /* DESCRIPTION 14 /* .nf 15 16 /* 17 * External interface. 18 */ 19 extern int unix_trigger(const char *, const char *, ssize_t, int); 20 extern int inet_trigger(const char *, const char *, ssize_t, int); 21 extern int fifo_trigger(const char *, const char *, ssize_t, int); 22 extern int stream_trigger(const char *, const char *, ssize_t, int); 23 extern int pass_trigger(const char *, const char *, ssize_t, int); 24 25 /* LICENSE 26 /* .ad 27 /* .fi 28 /* The Secure Mailer license must be distributed with this software. 29 /* AUTHOR(S) 30 /* Wietse Venema 31 /* IBM T.J. Watson Research 32 /* P.O. Box 704 33 /* Yorktown Heights, NY 10598, USA 34 /*--*/ 35 36 #endif 37