~ubuntu-branches/ubuntu/hoary/postfix/hoary-security

« back to all changes in this revision

Viewing changes to src/global/abounce.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-10-06 11:50:33 UTC
  • Revision ID: james.westby@ubuntu.com-20041006115033-ooo6yfg6kmoteu04
Tags: upstream-2.1.3
ImportĀ upstreamĀ versionĀ 2.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _ABOUNCE_H_INCLUDED_
 
2
#define _ABOUNCE_H_INCLUDED_
 
3
 
 
4
/*++
 
5
/* NAME
 
6
/*      abounce 3h
 
7
/* SUMMARY
 
8
/*      asynchronous bounce/defer service client
 
9
/* SYNOPSIS
 
10
/*      #include <abounce.h>
 
11
/* DESCRIPTION
 
12
/* .nf
 
13
 
 
14
 /*
 
15
  * Global library.
 
16
  */
 
17
#include <bounce.h>
 
18
 
 
19
 /*
 
20
  * Client interface.
 
21
  */
 
22
typedef void (*ABOUNCE_FN) (int, char *);
 
23
 
 
24
extern void abounce_flush(int, const char *, const char *, const char *, const char *, ABOUNCE_FN, char *);
 
25
extern void adefer_flush(int, const char *, const char *, const char *, const char *, ABOUNCE_FN, char *);
 
26
extern void adefer_warn(int, const char *, const char *, const char *, const char *, ABOUNCE_FN, char *);
 
27
 
 
28
extern void abounce_flush_verp(int, const char *, const char *, const char *, const char *, const char *, ABOUNCE_FN, char *);
 
29
extern void adefer_flush_verp(int, const char *, const char *, const char *, const char *, const char *, ABOUNCE_FN, char *);
 
30
 
 
31
/* LICENSE
 
32
/* .ad
 
33
/* .fi
 
34
/*      The Secure Mailer license must be distributed with this software.
 
35
/* AUTHOR(S)
 
36
/*      Wietse Venema
 
37
/*      IBM T.J. Watson Research
 
38
/*      P.O. Box 704
 
39
/*      Yorktown Heights, NY 10598, USA
 
40
/*--*/
 
41
 
 
42
#endif