46 lines
2.5 KiB
C
46 lines
2.5 KiB
C
//----------------------------------------------------------------------------
|
||
//
|
||
// Copyright (C) 2008 Intel Corporation
|
||
//
|
||
// File: GeneralInfoSample.h
|
||
//
|
||
// Contents: This file contains type definitions used throughout the code
|
||
// and constants as described in the "Intel<65> AMT Network Design
|
||
// Guide".
|
||
//
|
||
//----------------------------------------------------------------------------
|
||
|
||
#ifndef GENERALINFO_SAMPLE_H
|
||
#define GENERALINFO_SAMPLE_H 1
|
||
|
||
// optional command line parameters
|
||
static const char* GET_HOST_NAME = "HostName";
|
||
static const char* GET_ADMIN_ACL_STATUS = "AdminAclStatus";
|
||
static const char* GET_ADMIN_NET_ACL_STATUS = "AdminNetAclStatus";
|
||
static const char* GET_CODE_VERSIONS = "CodeVersions";
|
||
static const char* GET_PROVISIONING_MODE = "ProvisioningMode";
|
||
static const char* GET_PROVISIONING_STATE = "ProvisioningState";
|
||
static const char* GET_PASSWORD_MODEL = "PasswordModel";
|
||
static const char* GET_ENABLED_INTERFACES = "EnabledInterfaces";
|
||
static const char* GET_SECURITY_PARAMETERS = "SecurityParameters";
|
||
static const char* GET_CONFIG_SERVER_INFO = "ConfigServerInfo";
|
||
static const char* GET_CORE_VERSION = "CoreVersion";
|
||
static const char* GET_AUDIT_PROVISIONING_RECORD = "AuditProvisioningRecord";
|
||
static const char* GET_RPIVACY_LEVEL = "PrivacyLevel";
|
||
// optional command line parameters description
|
||
static const char* GET_HOST_NAME_DESCRIPTION = "Get the hostname";
|
||
static const char* GET_ADMIN_ACL_STATUS_DESCRIPTION = "Get the administrator's ACL status";
|
||
static const char* GET_ADMIN_NET_ACL_STATUS_DESCRIPTION = "Get the administrator's network ACL status";
|
||
static const char* GET_CODE_VERSIONS_DESCRIPTION = "Get the code versions";
|
||
static const char* GET_PROVISIONING_MODE_DESCRIPTION = "Get the provisioning mode";
|
||
static const char* GET_PROVISIONING_STATE_DESCRIPTION = "Get the provisioning state";
|
||
static const char* GET_PASSWORD_MODEL_DESCRIPTION = "Get the password model";
|
||
static const char* GET_ENABLED_INTERFACES_DESCRIPTION = "Get the enabled interfaces";
|
||
static const char* GET_SECURITY_PARAMETERS_DESCRIPTION = "Get the security parameters";
|
||
static const char* GET_CONFIG_SERVER_INFO_DESCRIPTION = "Get the configuration server's information";
|
||
static const char* GET_CORE_VERSION_DESCRIPTION = "Get the core version";
|
||
static const char* GET_AUDIT_PROVISIONING_RECORD_DESCRIPTION = "Get the audit provisioning record";
|
||
static const char* GET_PRIVACY_LEVEL_DESCRIPTION = "Get the privacy level";
|
||
|
||
|
||
#endif //GENERALINFO_SAMPLE_H
|