18 lines
535 B
Plaintext
18 lines
535 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "3.0.0" ),
|
|
Description (
|
|
"A communication point from which data may be sent or received. "
|
|
"ProtocolEndpoints link system/computer interfaces to "
|
|
"LogicalNetworks." )]
|
|
class AMT_TLSProtocolEndpoint : CIM_ProtocolEndpoint {
|
|
|
|
[Description (
|
|
"Describes what role the endpoint is playing in TLS exchanges."
|
|
),
|
|
ValueMap { "0", "1" },
|
|
Values { "Server", "Client" }]
|
|
uint8 Role;
|
|
|
|
|
|
};
|