ホーム › NetworkManagement.QoS › RSVP_POLICY
RSVP_POLICY
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| Len | WORD | 2 | +0 | +0 | 要素オブジェクト全体のサイズ (バイト単位)。 |
| Type | WORD | 2 | +2 | +2 | Info に含まれる RSVP ポリシー要素の種類。 |
| Info | BYTE | 4 | +4 | +4 | UCHAR で表されるポリシー データ。 |
公式ドキュメント
RSVP_POLICY 構造体は、1 つ以上の未定義のポリシー要素を格納します。
解説(Remarks)
RSVP は、Policy Control コンポーネントの代わりに RSVP_POLICY 構造体に含まれるデータを転送します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
#include <windows.h>
// RSVP_POLICY (x64 8 / x86 8 バイト)
typedef struct RSVP_POLICY {
WORD Len;
WORD Type;
BYTE Info[4];
} RSVP_POLICY;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RSVP_POLICY
{
public ushort Len;
public ushort Type;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public byte[] Info;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RSVP_POLICY
Public Len As UShort
Public Type As UShort
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> Public Info() As Byte
End Structureimport ctypes
from ctypes import wintypes
class RSVP_POLICY(ctypes.Structure):
_fields_ = [
("Len", ctypes.c_ushort),
("Type", ctypes.c_ushort),
("Info", ctypes.c_ubyte * 4),
]#[repr(C)]
pub struct RSVP_POLICY {
pub Len: u16,
pub Type: u16,
pub Info: [u8; 4],
}import "golang.org/x/sys/windows"
type RSVP_POLICY struct {
Len uint16
Type uint16
Info [4]byte
}type
RSVP_POLICY = record
Len: Word;
Type: Word;
Info: array[0..3] of Byte;
end;const RSVP_POLICY = extern struct {
Len: u16,
Type: u16,
Info: [4]u8,
};type
RSVP_POLICY {.bycopy.} = object
Len: uint16
Type: uint16
Info: array[4, uint8]struct RSVP_POLICY
{
ushort Len;
ushort Type;
ubyte[4] Info;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; RSVP_POLICY サイズ: 8 バイト(x64)
dim st, 2 ; 4byte整数×2(構造体サイズ 8 / 4 切り上げ)
; Len : WORD (+0, 2byte) wpoke st,0,値 / 値 = wpeek(st,0)
; Type : WORD (+2, 2byte) wpoke st,2,値 / 値 = wpeek(st,2)
; Info : BYTE (+4, 4byte) varptr(st)+4 を基点に操作(4byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global RSVP_POLICY
#field short Len
#field short Type
#field byte Info 4
#endstruct
stdim st, RSVP_POLICY ; NSTRUCT 変数を確保
st->Len = 100
mes "Len=" + st->Len