~ubuntu-branches/ubuntu/utopic/wpasupplicant/utopic

« back to all changes in this revision

Viewing changes to src/crypto/tls.h

  • Committer: Bazaar Package Importer
  • Author(s): Kel Modderman
  • Date: 2010-02-27 11:30:53 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100227113053-axxieaw3hmuqbqls
Tags: 0.6.10-2
* Switch to source format 3.0 (quilt), drop quilt build dependency
  and remove '--with quilt' from dh command in debian/rules.
* Fix "FTBFS on kfreebsd-gnu" with addition of 21_kfreebsd.patch.
  Thanks to work by Stefan Lippers-Hollmann and Petr Salinger.
  (Closes: #480572)
* Disable experimental feature CONFIG_IEEE80211W (management frame
  protection) due to it not being supported by any driver but ath9k
  and it generating ioctl errors which cause much concern among users
  for little to no benefit.
* Add traling blank line to debian/NEWS to assist apt-listchanges as
  per lintian advice.
* Cherry pick 30_cfg80211_association_optimisation.patch from upstream
  git. Add cfg80211-specific optimization to avoid silly behavior.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        const char *pkcs11_module_path;
35
35
};
36
36
 
 
37
#define TLS_CONN_ALLOW_SIGN_RSA_MD5 BIT(0)
 
38
#define TLS_CONN_DISABLE_TIME_CHECKS BIT(1)
 
39
 
37
40
/**
38
41
 * struct tls_connection_params - Parameters for TLS connection
39
42
 * @ca_cert: File or reference name for CA X.509 certificate in PEM or DER
68
71
 * @cert_id: the certificate's id when using engine
69
72
 * @ca_cert_id: the CA certificate's id when using engine
70
73
 * @tls_ia: Whether to enable TLS/IA (for EAP-TTLSv1)
 
74
 * @flags: Parameter options (TLS_CONN_*)
71
75
 *
72
76
 * TLS connection parameters to be configured with tls_connection_set_params()
73
77
 * and tls_global_set_params().
103
107
        const char *key_id;
104
108
        const char *cert_id;
105
109
        const char *ca_cert_id;
 
110
 
 
111
        unsigned int flags;
106
112
};
107
113
 
108
114