~ubuntu-branches/ubuntu/raring/curl/raring-proposed

« back to all changes in this revision

Viewing changes to lib/smtp.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-02-12 08:54:32 UTC
  • mfrom: (3.4.34 sid)
  • Revision ID: package-import@ubuntu.com-20130212085432-r1fyi0b37enr93pp
Tags: 7.29.0-1ubuntu1
* Resynchronise with 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.
* Add warning to debian/patches/series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __SMTP_H
2
 
#define __SMTP_H
 
1
#ifndef HEADER_CURL_SMTP_H
 
2
#define HEADER_CURL_SMTP_H
3
3
/***************************************************************************
4
4
 *                                  _   _ ____  _
5
5
 *  Project                     ___| | | |  _ \| |
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 2009 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 2009 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
64
64
  unsigned int authused;   /* Auth mechanism used for the connection */
65
65
  smtpstate state;         /* Always use smtp.c:state() to change state! */
66
66
  struct curl_slist *rcpt; /* Recipient list */
67
 
  bool ssldone;            /* Is connect() over SSL done? only relevant in
68
 
                              multi mode */
 
67
  bool ssldone;            /* Is connect() over SSL done? */
69
68
  bool size_supported;     /* If server supports SIZE extension according to
70
69
                              RFC 1870 */
71
70
};
84
83
 
85
84
CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread);
86
85
 
87
 
#endif /* __SMTP_H */
 
86
#endif /* HEADER_CURL_SMTP_H */