003 File Manager
Current Path:
/usr/src/contrib/wpa/src/eap_peer
usr
/
src
/
contrib
/
wpa
/
src
/
eap_peer
/
📁
..
📄
eap.c
(85.07 KB)
📄
eap.h
(11.96 KB)
📄
eap_aka.c
(44.5 KB)
📄
eap_config.h
(27.24 KB)
📄
eap_eke.c
(20.08 KB)
📄
eap_fast.c
(48.05 KB)
📄
eap_fast_pac.c
(20.71 KB)
📄
eap_fast_pac.h
(1.41 KB)
📄
eap_gpsk.c
(18.77 KB)
📄
eap_gtc.c
(3.35 KB)
📄
eap_i.h
(13.51 KB)
📄
eap_ikev2.c
(12.79 KB)
📄
eap_leap.c
(10.81 KB)
📄
eap_md5.c
(2.82 KB)
📄
eap_methods.c
(8.63 KB)
📄
eap_methods.h
(2.7 KB)
📄
eap_mschapv2.c
(25.42 KB)
📄
eap_otp.c
(2.1 KB)
📄
eap_pax.c
(13.98 KB)
📄
eap_peap.c
(37.35 KB)
📄
eap_proxy.h
(1.44 KB)
📄
eap_proxy_dummy.c
(1.51 KB)
📄
eap_psk.c
(13.12 KB)
📄
eap_pwd.c
(30.39 KB)
📄
eap_sake.c
(12.78 KB)
📄
eap_sim.c
(36.06 KB)
📄
eap_teap.c
(54.2 KB)
📄
eap_teap_pac.c
(20.29 KB)
📄
eap_teap_pac.h
(1.41 KB)
📄
eap_tls.c
(11.77 KB)
📄
eap_tls_common.c
(36.06 KB)
📄
eap_tls_common.h
(3.94 KB)
📄
eap_tnc.c
(10.06 KB)
📄
eap_ttls.c
(47.59 KB)
📄
eap_vendor_test.c
(4.19 KB)
📄
eap_wsc.c
(14.38 KB)
📄
ikev2.c
(30.38 KB)
📄
ikev2.h
(1.35 KB)
📄
mschapv2.c
(3.58 KB)
📄
mschapv2.h
(834 B)
📄
tncc.c
(29.92 KB)
📄
tncc.h
(994 B)
Editing: eap_proxy_dummy.c
/* * EAP proxy - dummy implementation for build testing * Copyright (c) 2013 Qualcomm Atheros, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "includes.h" #include "common.h" #include "eap_proxy.h" struct eap_proxy_sm * eap_proxy_init(void *eapol_ctx, const struct eapol_callbacks *eapol_cb, void *msg_ctx) { return NULL; } void eap_proxy_deinit(struct eap_proxy_sm *eap_proxy) { } int eap_proxy_key_available(struct eap_proxy_sm *sm) { return 0; } const u8 * eap_proxy_get_eapKeyData(struct eap_proxy_sm *sm, size_t *len) { return NULL; } struct wpabuf * eap_proxy_get_eapRespData(struct eap_proxy_sm *sm) { return NULL; } int eap_proxy_sm_step(struct eap_proxy_sm *sm, struct eap_sm *eap_sm) { return 0; } enum eap_proxy_status eap_proxy_packet_update(struct eap_proxy_sm *eap_proxy, u8 *eapReqData, int eapReqDataLen) { return EAP_PROXY_FAILURE; } int eap_proxy_sm_get_status(struct eap_proxy_sm *sm, char *buf, size_t buflen, int verbose) { return 0; } int eap_proxy_get_imsi(struct eap_proxy_sm *eap_proxy, int sim_num, char *imsi_buf, size_t *imsi_len) { return -1; } int eap_proxy_notify_config(struct eap_proxy_sm *sm, struct eap_peer_config *config) { return -1; } u8 * eap_proxy_get_eap_session_id(struct eap_proxy_sm *sm, size_t *len) { return NULL; } u8 * eap_proxy_get_emsk(struct eap_proxy_sm *sm, size_t *len) { return NULL; } void eap_proxy_sm_abort(struct eap_proxy_sm *sm) { }
Upload File
Create Folder