/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/SDK/Include/eapmethodtypes.h
57 строк
1 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) Microsoft Corporation // // SYNOPSIS // // Declares datastructures that executes the peer eap state machine. // /////////////////////////////////////////////////////////////////////////////// #ifndef EAPMETHODAPIS_H #define EAPMETHODAPIS_H #pragma once #ifdef __cplusplus extern "C" { #endif // structure that represents EAP packet on the wire typedef struct tagEapPacket { BYTE Code; BYTE Id; BYTE Length[2]; BYTE Data[1]; // Any additional data following the first byte. The length of // the data can be deduced by the length fields. } EapPacket; // // EAP packet codes from EAP spec. // typedef #ifdef __midl [v1_enum] #endif // possible values for 'code' in EAPPacket enum tagEapCode { EapCodeMinimum = 1, EapCodeRequest = 1, EapCodeResponse, EapCodeSuccess, EapCodeFailure, EapCodeMaximum = EapCodeFailure } EapCode; // This is a handle to an eap session owned by the individual eap methods. typedef VOID* EAP_SESSION_HANDLE; #ifdef __cplusplus } #endif #endif // EAPMETHODAPIS_H