RADIUS_EXTENSION_POINT enumeration (authif.h)

Note  Internet Authentication Service (IAS) was renamed Network Policy Server (NPS) starting with Windows Server 2008. The content of this topic applies to both IAS and NPS.
 
The RADIUS_EXTENSION_POINT enumeration type enumerates the possible points in the RADIUS request process when the RadiusExtensionProcess2 function can be called.

Syntax

typedef enum _RADIUS_EXTENSION_POINT {
  repAuthentication,
  repAuthorization
} RADIUS_EXTENSION_POINT;

Constants

 
repAuthentication
Indicates that the
RadiusExtensionProcess2 function is called at the point in the request process where authentication occurs.
repAuthorization
Indicates that the
RadiusExtensionProcess2 function is called at the point in the request process where authorization occurs.

Remarks

The repPoint member of the RADIUS_EXTENSION_CONTROL_BLOCK structure is of type RADIUS_EXTENSION_POINT.

See About NPS Extensions for a diagram that shows the request process.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008
Header authif.h

See also

About NPS Extensions

NPS Extensions Enumerations

NPS Extensions Reference

RADIUS_EXTENSION_CONTROL_BLOCK

RadiusExtensionProcess2