~ubuntu-branches/ubuntu/maverick/postfix/maverick-security

« back to all changes in this revision

Viewing changes to src/tls/tls_misc.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Wietse Venema, LaMont Jones
  • Date: 2009-06-03 14:17:08 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20090603141708-o9u59xlor7nmd2x1
[Wietse Venema]

* New upstream release: 2.6.2~rc1

[LaMont Jones]

* move postfix-add-{filter,policy} manpages to section 8, and deliver
* provide: default-mta on ubuntu

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
/*      char    *var_tls_low_clist;
13
13
/*      char    *var_tls_export_clist;
14
14
/*      char    *var_tls_null_clist;
 
15
/*      char    *var_tls_eecdh_strong;
 
16
/*      char    *var_tls_eecdh_ultra;
15
17
/*      int     var_tls_daemon_rand_bytes;
16
18
/*
17
19
/*      TLS_APPL_STATE *tls_alloc_app_context(ssl_ctx)
175
177
#define TLS_INTERNAL
176
178
#include <tls.h>
177
179
 
178
 
/* Application-specific. */
 
180
 /* Application-specific. */
179
181
 
180
182
 /*
181
183
  * Tunable parameters.
186
188
char   *var_tls_export_clist;
187
189
char   *var_tls_null_clist;
188
190
int     var_tls_daemon_rand_bytes;
 
191
char   *var_tls_eecdh_strong;
 
192
char   *var_tls_eecdh_ultra;
189
193
 
190
194
 /*
191
195
  * Index to attach TLScontext pointers to SSL objects, so that they can be
395
399
        VAR_TLS_LOW_CLIST, DEF_TLS_LOW_CLIST, &var_tls_low_clist, 1, 0,
396
400
        VAR_TLS_EXPORT_CLIST, DEF_TLS_EXPORT_CLIST, &var_tls_export_clist, 1, 0,
397
401
        VAR_TLS_NULL_CLIST, DEF_TLS_NULL_CLIST, &var_tls_null_clist, 1, 0,
 
402
        VAR_TLS_EECDH_STRONG, DEF_TLS_EECDH_STRONG, &var_tls_eecdh_strong, 1, 0,
 
403
        VAR_TLS_EECDH_ULTRA, DEF_TLS_EECDH_ULTRA, &var_tls_eecdh_ultra, 1, 0,
398
404
        0,
399
405
    };
400
406
    static const CONFIG_INT_TABLE int_table[] = {