• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * EAP common peer/server definitions
3  * Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef EAP_COMMON_H
10 #define EAP_COMMON_H
11 
12 #include "wpabuf.h"
13 
14 const u8 * eap_hdr_validate(int vendor, EapType eap_type,
15 			    const struct wpabuf *msg, size_t *plen);
16 struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len,
17 			      u8 code, u8 identifier);
18 void eap_update_len(struct wpabuf *msg);
19 u8 eap_get_id(const struct wpabuf *msg);
20 EapType eap_get_type(const struct wpabuf *msg);
21 
22 #endif /* EAP_COMMON_H */
23