PLCnext API Documentation 24.0.0.71
TlsAlertLevel.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace System { namespace Commons { namespace Net
11{
12
15enum class TlsAlertLevel
16{
17 None = 0,
18 Warning = 1,
19 Fatal = 2,
20};
21
23// global stream operators of enum TlsAlertLevel for logging and parsing
24ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, TlsAlertLevel value);
25ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, TlsAlertLevel& value);
26
27}}}} // end of namespace Arp::System::Commons::Net
@ System
System components used by the System, Device, Plc or Io domains.
std::ostream & operator<<(std::ostream &os, const IpAddress &ipAddress)
The ostream operator is used for logging and string formatting.
Definition: IpAddress.hpp:107
std::istream & operator>>(std::istream &is, IpAddress &ipAddress)
The istream operator is used for string parsing.
Definition: IpAddress.hpp:114
TlsAlertLevel
This enum represents avaliable TLS alert Levels
Definition: TlsAlertLevel.hpp:16
Root namespace for the PLCnext API