~ubuntu-branches/ubuntu/natty/wpasupplicant/natty

« back to all changes in this revision

Viewing changes to tls_none.c

  • Committer: Bazaar Package Importer
  • Author(s): Kyle McMartin
  • Date: 2005-02-15 00:51:28 UTC
  • Revision ID: james.westby@ubuntu.com-20050215005128-xr4m8owiunur2008
Tags: upstream-0.3.8
ImportĀ upstreamĀ versionĀ 0.3.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * WPA Supplicant / SSL/TLS interface functions for no TLS case
 
3
 * Copyright (c) 2004, Jouni Malinen <jkmaline@cc.hut.fi>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 2 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * Alternatively, this software may be distributed under the terms of BSD
 
10
 * license.
 
11
 *
 
12
 * See README and COPYING for more details.
 
13
 */
 
14
 
 
15
void * tls_init(void)
 
16
{
 
17
        return (void *) 1;
 
18
}
 
19
 
 
20
void tls_deinit(void *ssl_ctx)
 
21
{
 
22
}