Win32 API 日本語リファレンス
ホームNetworkManagement.NetworkPolicyServer › RADIUS_EXTENSION_POINT

RADIUS_EXTENSION_POINT

列挙型
基底型i4

メンバー 2

名前10進16進説明
repAuthentication00x0要求処理のうち認証が行われる位置で RadiusExtensionProcess2 関数が呼び出されることを示します。
repAuthorization10x1要求処理のうち承認が行われる位置で RadiusExtensionProcess2 関数が呼び出されることを示します。

公式ドキュメント

Note Internet Authentication Service (IAS) は、Windows Server 2008 以降 Network Policy Server (NPS) に名称が変更されました。このトピックの内容は IAS と NPS の両方に適用されます。
RADIUS_EXTENSION_POINT 列挙型は、 RadiusExtensionProcess2 関数を呼び出すことができる RADIUS 要求処理上の位置を列挙します。

解説(Remarks)

RADIUS_EXTENSION_CONTROL_BLOCK 構造体の repPoint メンバーは RADIUS_EXTENSION_POINT 型です。

要求処理を示す図については、 About NPS Extensions を参照してください。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum RADIUS_EXTENSION_POINT : int {
    repAuthentication = 0,
    repAuthorization = 1
} RADIUS_EXTENSION_POINT;
public enum RADIUS_EXTENSION_POINT : int
{
    repAuthentication = 0,
    repAuthorization = 1,
}
Public Enum RADIUS_EXTENSION_POINT As Integer
    repAuthentication = 0
    repAuthorization = 1
End Enum
import enum

class RADIUS_EXTENSION_POINT(enum.IntEnum):
    repAuthentication = 0
    repAuthorization = 1
// RADIUS_EXTENSION_POINT
pub const repAuthentication: i32 = 0;
pub const repAuthorization: i32 = 1;
// RADIUS_EXTENSION_POINT
const (
	repAuthentication int32 = 0
	repAuthorization int32 = 1
)
const
  repAuthentication = 0;
  repAuthorization = 1;
// RADIUS_EXTENSION_POINT
pub const repAuthentication: i32 = 0;
pub const repAuthorization: i32 = 1;
const
  repAuthentication* = 0
  repAuthorization* = 1
enum RADIUS_EXTENSION_POINT : int {
    repAuthentication = 0,
    repAuthorization = 1,
}
#define global repAuthentication 0x0
#define global repAuthorization  0x1