~ubuntu-branches/ubuntu/trusty/curl/trusty

« back to all changes in this revision

Viewing changes to lib/smtp.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-12-20 09:13:22 UTC
  • mfrom: (3.4.44 sid)
  • Revision ID: package-import@ubuntu.com-20131220091322-lqk9xf5wba7vsyfh
Tags: 7.34.0-1ubuntu1
* Resynchronize on Debian, remaining changes
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Dropped undocumented Build-Depends change to automake1.9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  SMTP_AUTH_NTLM,
46
46
  SMTP_AUTH_NTLM_TYPE2MSG,
47
47
  SMTP_AUTH_XOAUTH2,
 
48
  SMTP_AUTH_CANCEL,
48
49
  SMTP_AUTH_FINAL,
 
50
  SMTP_COMMAND,     /* VRFY, EXPN, NOOP, RSET and HELP */
49
51
  SMTP_MAIL,        /* MAIL FROM */
50
52
  SMTP_RCPT,        /* RCPT TO */
51
53
  SMTP_DATA,
60
62
   used. */
61
63
struct SMTP {
62
64
  curl_pp_transfer transfer;
 
65
  char *custom;            /* Custom Request */
63
66
  struct curl_slist *rcpt; /* Recipient list */
64
67
  size_t eob;              /* Number of bytes of the EOB (End Of Body) that
65
68
                              have been received so far */