~ubuntu-branches/ubuntu/precise/wpasupplicant/precise-security

« back to all changes in this revision

Viewing changes to src/tls/tlsv1_server.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-22 09:43:43 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122094343-qgsxaojvmswfri77
Tags: 0.7.3-0ubuntu1
* Get wpasupplicant 0.7.3 from Debian's SVN. Leaving 0.7.3-1 as unreleased
  for now.
* Build-Depend on debhelper 8, since the packaging from Debian uses compat 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#include "includes.h"
16
16
 
17
17
#include "common.h"
18
 
#include "sha1.h"
19
 
#include "tls.h"
 
18
#include "crypto/sha1.h"
 
19
#include "crypto/tls.h"
20
20
#include "tlsv1_common.h"
21
21
#include "tlsv1_record.h"
22
22
#include "tlsv1_server.h"
546
546
 */
547
547
int tlsv1_server_set_cipher_list(struct tlsv1_server *conn, u8 *ciphers)
548
548
{
549
 
#ifdef EAP_FAST
550
549
        size_t count;
551
550
        u16 *suites;
552
551
 
572
571
        }
573
572
 
574
573
        return 0;
575
 
#else /* EAP_FAST */
576
 
        return -1;
577
 
#endif /* EAP_FAST */
578
574
}
579
575
 
580
576