Lines Matching refs:resp
49 struct wpabuf *resp; in eap_gtc_process() local
72 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC, in eap_gtc_process()
74 return resp; in eap_gtc_process()
104 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC, plen, in eap_gtc_process()
106 if (resp == NULL) in eap_gtc_process()
109 wpabuf_put_data(resp, "RESPONSE=", 9); in eap_gtc_process()
110 wpabuf_put_data(resp, identity, identity_len); in eap_gtc_process()
111 wpabuf_put_u8(resp, '\0'); in eap_gtc_process()
113 wpabuf_put_data(resp, password, password_len); in eap_gtc_process()
115 wpabuf_head_u8(resp) + sizeof(struct eap_hdr) + in eap_gtc_process()
123 return resp; in eap_gtc_process()