~ubuntu-branches/ubuntu/saucy/postfix/saucy-201305211707

« back to all changes in this revision

Viewing changes to src/tls/tls.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Wietse Venema, Kees Cook
  • Date: 2011-02-23 02:04:21 UTC
  • mfrom: (1.1.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20110223020421-1hxhntwr0fvyzucd
[Wietse Venema]

* new upstream version

[Kees Cook]

* debian/init.d: fix relative path problem in CA bundle chroot copying. 
  Closes: #614748, #614750  LP: #723312

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
typedef struct {
269
269
    TLS_APPL_STATE *ctx;                /* TLS application context */
270
270
    VSTREAM *stream;                    /* Client stream */
 
271
    int     fd;                         /* Event-driven file descriptor */
271
272
    int     log_level;                  /* TLS log level */
272
273
    int     timeout;                    /* TLS handshake timeout */
273
274
    int     requirecert;                /* Insist on client cert? */
293
294
    ((props)->a12), ((props)->a13), ((props)->a14), ((props)->a15), \
294
295
    ((props)->a16), ((props)->a17), ((props)->a18), ((props)->a19), (props)))
295
296
 
296
 
#define TLS_SERVER_START(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) \
 
297
#define TLS_SERVER_START(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11) \
297
298
    tls_server_start((((props)->a1), ((props)->a2), ((props)->a3), \
298
299
    ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \
299
 
    ((props)->a8), ((props)->a9), ((props)->a10), (props)))
 
300
    ((props)->a8), ((props)->a9), ((props)->a10), ((props)->a11), (props)))
300
301
 
301
302
 /*
302
303
  * tls_session.c