]> git.ipfire.org Git - thirdparty/hostap.git/blame - eap_example/eap_example.c
tests: PMF and Data frame injection
[thirdparty/hostap.git] / eap_example / eap_example.c
CommitLineData
6fc6879b
JM
1/*
2 * Example application showing how EAP peer and server code from
3 * wpa_supplicant/hostapd can be used as a library. This example program
4 * initializes both an EAP server and an EAP peer entities and then runs
5 * through an EAP-PEAP/MSCHAPv2 authentication.
6 * Copyright (c) 2007, Jouni Malinen <j@w1.fi>
7 *
0f3d578e
JM
8 * This software may be distributed under the terms of the BSD license.
9 * See README for more details.
6fc6879b
JM
10 */
11
12#include "includes.h"
13
14#include "common.h"
15
16
17int eap_example_peer_init(void);
18void eap_example_peer_deinit(void);
19int eap_example_peer_step(void);
20
21int eap_example_server_init(void);
22void eap_example_server_deinit(void);
23int eap_example_server_step(void);
24
25
6fc6879b
JM
26int main(int argc, char *argv[])
27{
28 int res_s, res_p;
29
30 wpa_debug_level = 0;
31
32 if (eap_example_peer_init() < 0 ||
33 eap_example_server_init() < 0)
34 return -1;
35
36 do {
37 printf("---[ server ]--------------------------------\n");
38 res_s = eap_example_server_step();
39 printf("---[ peer ]----------------------------------\n");
40 res_p = eap_example_peer_step();
41 } while (res_s || res_p);
42
43 eap_example_peer_deinit();
44 eap_example_server_deinit();
45
46 return 0;
47}