Skip to content

QuantumGate::Access::IPFilter

Karel Donk edited this page Dec 11, 2019 · 1 revision

QuantumGate::Access::IPFilter is a struct containing details about an IP filter.

Definition

struct IPFilter
{
    IPFilterID ID{ 0 };
    IPFilterType Type{ IPFilterType::Blocked };
    IPAddress Address;
    IPAddress Mask;
};

Member variables

Name Description
ID The ID of the filter.
Type The type of the filter. See QuantumGate::Access::IPFilterType for more details.
Address The IP address.
Mask The address mask.
Clone this wiki locally