blob: 473c3ca6e3e05a36d3fa4e9ea54b1e9081432127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef RECEIVED_H
#define RECEIVED_H
#include "qmail.h"
void received(const struct qmail *qqt, const char *protocol,
const char *local, const char *remoteip, const char *remotehost,
const char *remoteinfo, const char *remotesession, const char *helo
);
void received_authed(const struct qmail *qqt, const char *protocol,
const char *local, const char *remoteinfo, const char *remotesession);
#endif
|