~ubuntu-branches/ubuntu/trusty/postfix/trusty-updates

« back to all changes in this revision

Viewing changes to src/smtpd/smtpd_proxy.h

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, LaMont Jones, localization folks
  • Date: 2014-02-11 07:44:30 UTC
  • mfrom: (58.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140211074430-kwkoxdz0fbajn0fj
Tags: 2.11.0-1
[LaMont Jones]

* New upstream release: 2.11.0

[localization folks]

* l10n: Updated German translations.  Closes: #734893 (Helge Kreutzmann)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
typedef struct SMTPD_PROXY {
26
26
    /* Public. */
27
27
    VSTREAM *stream;
28
 
    VSTRING *buffer;                    /* proxy query/reply buffer */
 
28
    VSTRING *request;                   /* proxy request buffer */
 
29
    VSTRING *reply;                     /* proxy reply buffer */
29
30
    SMTPD_PROXY_CMD_FN cmd;
30
31
    SMTPD_PROXY_REC_FPRINTF_FN rec_fprintf;
31
32
    SMTPD_PROXY_REC_PUT_FN rec_put;