eap_leap.h
来自「RADIUS 服务器介绍 RADIUS服务器支持标准的RADIUS协议」· C头文件 代码 · 共 74 行
H
74 行
#ifndef _EAP_LEAP_H#define _EAP_LEAP_H#include "eap.h"#define PW_LEAP_CHALLENGE 1#define PW_LEAP_RESPONSE 2#define PW_LEAP_SUCCESS 3#define PW_LEAP_FAILURE 4#define PW_LEAP_MAX_CODES 4/* * Version + unused + count */#define LEAP_HEADER_LEN 3/* **** * EAP - LEAP doesnot specify code, id & length but chap specifies them, * for generalization purpose, complete header should be sent * and not just value_size, value and name. * future implementation. *//* eap packet structure */typedef struct leap_packet_t { /* * EAP header, followed by type comes before this. */ uint8_t version; uint8_t unused; uint8_t count; uint8_t challenge[1]; /* 8 or 24, followed by user name */} leap_packet_t;/* * Which is decoded into this. */typedef struct leap_packet { unsigned char code; unsigned char id; int length; int count; unsigned char *challenge; int name_len; char *name;} LEAP_PACKET;/* * The information which must be kept around * during the LEAP session. */typedef struct leap_session_t { int stage; uint8_t peer_challenge[8]; uint8_t peer_response[24];} leap_session_t;/* function declarations here */LEAP_PACKET *eapleap_alloc(void);void eapleap_free(LEAP_PACKET **leap_packet_ptr);int eapleap_compose(EAP_DS *auth, LEAP_PACKET *reply);LEAP_PACKET *eapleap_extract(EAP_DS *auth);LEAP_PACKET *eapleap_initiate(EAP_DS *eap_ds, VALUE_PAIR *user_name);int eapleap_stage4(LEAP_PACKET *packet, VALUE_PAIR* password, leap_session_t *session);LEAP_PACKET *eapleap_stage6(LEAP_PACKET *packet, REQUEST *request, VALUE_PAIR *user_name, VALUE_PAIR* password, leap_session_t *session, VALUE_PAIR **reply_vps);#endif /*_EAP_LEAP_H*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?