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 {
33 unspecified = -1,
35 unrestricted = 10,
37 edge_restricted = 20,
39 restricted = 30
40 };
41 }
42 }
43}
44
48};
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:31
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
@ 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:38