blob: 8c6cb48ccd00d9e49b9c64e279c5fb97e721506d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*++
/* NAME
/* smtp_reuse 3h
/* SUMMARY
/* SMTP session cache glue
/* SYNOPSIS
/* #include <smtp_reuse.h>
/* DESCRIPTION
/* .nf
/*
* Internal interfaces.
*/
extern void smtp_save_session(SMTP_STATE *, int, int);
extern SMTP_SESSION *smtp_reuse_nexthop(SMTP_STATE *, int);
extern SMTP_SESSION *smtp_reuse_addr(SMTP_STATE *, int);
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
|