blob: e2c03d81219da90240b6147f5d02a87e42fc3984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef QMAIL_SPP_H
#define QMAIL_SPP_H
extern stralloc sppheaders;
extern int spp_init();
extern int spp_connect();
extern int spp_helo();
extern void spp_rset();
extern int spp_mail();
extern int spp_rcpt();
extern void spp_rcpt_accepted();
extern int spp_data();
extern int spp_auth();
#endif
|