mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-16 01:40:52 +08:00
cf2528eb7c
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
13 lines
335 B
C
13 lines
335 B
C
#ifndef __NOTIFY_INCLUDE_H__
|
|
#define __NOTIFY_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
|
|
int notify(ACL_CACHE *smtp_cache, ACL_CACHE *sms_cache, const char *data);
|
|
int smtp_notify(const char *proc, ACL_ARGV *rcpts,
|
|
int pid, const char *info);
|
|
int sms_notify(const char *proc, ACL_ARGV *rcpts,
|
|
int pid, const char *info);
|
|
|
|
#endif
|