Microsoft Information Protection (MIP) SDK for C++: Reference 1.15
Doxygen-generated documentation for MIP SDK written in C++
Loading...
Searching...
No Matches
dns_redirection.h File Reference

A file Containing types used to control dns redirection. More...

+ Include dependency graph for dns_redirection.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum class  DnsRedirection : unsigned int {
  Disabled = 0 ,
  MDEDiscovery = 1 << 0
}
 Storage type for the caches. More...
 

Functions

DnsRedirection operator| (DnsRedirection lhs, DnsRedirection rhs)
 

Detailed Description

A file Containing types used to control dns redirection.

Definition in file dns_redirection.h.

Enumeration Type Documentation

◆ DnsRedirection

enum class DnsRedirection : unsigned int
strong

Storage type for the caches.

Enumerator
Disabled 

Dns redirect is disabled.

MDEDiscovery 

MDE DNS.

Uses DNS query _rmsdisco._http._tcp. This mode is the default

Definition at line 43 of file dns_redirection.h.

43 : unsigned int {
44 Disabled = 0, /**< Dns redirect is disabled */
45 MDEDiscovery = 1 << 0, /**< MDE DNS. Uses DNS query _rmsdisco._http._tcp. This mode is the default */
46};
@ Disabled
Dns redirect is disabled.
@ MDEDiscovery
MDE DNS.

Function Documentation

◆ operator|()

DnsRedirection operator| ( DnsRedirection lhs,
DnsRedirection rhs )
inline

Definition at line 48 of file dns_redirection.h.

48 {
49 return static_cast<DnsRedirection>(static_cast<unsigned int>(lhs) | static_cast<unsigned int>(rhs));
50}
DnsRedirection
Storage type for the caches.