xtd 0.2.0
Loading...
Searching...
No Matches
ip_protection_level.h
Go to the documentation of this file.
1
4#pragma once
5#include "../../enum.h"
6
8#undef unix
10
12namespace xtd {
14 namespace net {
16 namespace sockets {
31 unspecified = -1,
33 unrestricted = 10,
35 edge_restricted = 20,
37 restricted = 30
38 };
39 }
40 }
41}
42
46};
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
ip_protection_level
A value that enables restriction of an IPv6 socket to a specified scope, such as addresses with the s...
Definition ip_protection_level.h:29
@ unspecified
Unspecified address family.
@ edge_restricted
The IP protection level is edge restricted. This value would be used by applications designed to oper...
@ unrestricted
The IP protection level is unrestricted. This value would be used by applications designed to operate...
@ restricted
The IP protection level is restricted. This value would be used by intranet applications that do not ...
@ unspecified
The IP protection level is unspecified. On Windows 7 and Windows Server 2008 R2, the default value fo...
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36