다음을 통해 공유


EapHostPeerSetResponseAttributes 함수(eappapis.h)

EAPHost에 업데이트된 EAP 인증 특성을 제공합니다.

구문

DWORD EapHostPeerSetResponseAttributes(
  [in]  EAP_SESSIONID               sessionHandle,
  [in]  const EapAttributes * const pAttribs,
  [out] EapHostPeerResponseAction   *pEapOutput,
  [out] EAP_ERROR                   **ppEapError
);

매개 변수

[in] sessionHandle

EAPHost 서버에서 이 EAP 인증 세션에 대한 고유 핸들을 포함하는 EAP_SESSIONID 구조체에 대한 포인터입니다. 이 핸들은 EapHostPeerBeginSession에 대한 이전 호출에서 pSessionId 매개 변수에 반환됩니다.

[in] pAttribs

EAPHost의 supplicant에 대해 설정할 새 EAP 인증 응답 특성의 배열을 포함하는 EapAttributes 구조체에 대한 포인터입니다.

[out] pEapOutput

다음 단계의 작업 코드를 지정하는 EapHostPeerResponseAction 열거형 값에 대한 포인터입니다.

[out] ppEapError

EAP_ERROR 구조체의 주소에 대한 포인터입니다. 이 함수를 호출하기 전에 주소를 NULL 로 설정해야 합니다. 오류 데이터를 사용할 수 있는 경우 이 함수 호출을 실행하는 동안 발생한 오류가 포함된 EAP_ERROR 구조체의 주소에 대한 포인터가 수신됩니다. 오류 데이터를 사용한 후 EapHostPeerFreeEapError를 호출하여 이 메모리를 해제합니다.

반환 값

없음

설명

EapHostPeerGetResponseAttributes를 호출한 후 상태 컴퓨터에서 다음 단계로 진행하려면 지원자는 EapHostPeerSetResponseAttributes를 호출해야 합니다. 지원자는 EapHostPeerGetResponseAttributes에서 반환된 특성을 사용할 수 없더라도 유효한 EapAttributes 구조를 전달하려면 이 작업을 수행해야 합니다.

다음 예제에서는 상태 컴퓨터에서 다음 상태로 진행하기 위해서만 수행되는 EapHostPeerSetResponseAttributes 호출을 보여 줍니다.

EapHostPeerGetResponseAttributes(session_id, &eapAttributes, ppEapError);

// overwrite attributes returned by EapHostPeerGetResponseAttributes
EapAttributes eapAttributes={0,NULL};

// progress to the next state in the state machine
EapHostPeerSetResponseAttributes(session_id, &eapAttributes, pEapOutput, ppEapError);

요구 사항

   
지원되는 최소 클라이언트 Windows Vista [데스크톱 앱만 해당]
지원되는 최소 서버 Windows Server 2008 [데스크톱 앱만 해당]
대상 플랫폼 Windows
헤더 eappapis.h
라이브러리 Eappprxy.lib
DLL Eappprxy.dll

추가 정보

EAPHost Supplicant 런타임 함수

EapHostPeerGetResponseAttributes