//---------------------------------------------------------------------------- // // Copyright (C) 2008 Intel Corporation // // File: WirelessConfigurationSample.h // // Contents: This file contains type definitions used throughout the code // and constants as described in the "Intel� AMT Network Interface // Guide". // //---------------------------------------------------------------------------- #ifndef WIRELESS_CONFIGURATION_SAMPLE_H #define WIRELESS_CONFIGURATION_SAMPLE_H 1 // Optional command line parameters static const char * CMD_API_TEST = "A"; // api test static const char * CMD_DELETE_ALL_PROFILES = "r"; // delete all profiles static const char * CMD_ADD_PROFILE_802_1x = "s"; // add profile with 802.1x EAP TLS static const char * CMD_ADD_PROFILE = "p"; // add sample profile static const char * CMD_UPDATE_PROFILE = "u"; // update sample profile static const char * CMD_DELETE_PROFILE = "d"; // delete sample profile static const char * CMD_ENUMERATE_PROFILES = "e"; // enumerate profiles static const char * CMD_WIFI_CAPABILITIES = "c"; // capabilities static const char * CMD_GET_LOCAL_PROFILE_SYNCH = "g"; // get local profile synchronization static const char * CMD_SET_LOCAL_PROFILE_SYNCH = "t"; // get local profile synchronization // Optional command line parameters description static const char * CMD_API_TEST_DESCRIPTION = "Perform API test"; static const char * CMD_DELETE_ALL_PROFILES_DESCRIPTION = "Delete All Wireless Profiles"; static const char * CMD_ADD_PROFILE_802_1x_DESCRIPTION = "Add a Wireless Profile with 802.1x settings"; static const char * CMD_ADD_PROFILE_DESCRIPTION = "Add a Sample Wireless Profile"; static const char * CMD_UPDATE_PROFILE_DESCRIPTION = "Update an existing Sample Wireless Profile"; static const char * CMD_DELETE_PROFILE_DESCRIPTION = "Delete the Sample Wireless Profile Created by this Application"; static const char * CMD_ENUMERATE_PROFILES_DESCRIPTION = "Enumerate All Existing Profiles"; static const char * CMD_WIFI_CAPABILITIES_DESCRIPTION = "Present the Intel(r) AMT wireless capabilities"; static const char * CMD_GET_LOCAL_PROFILE_SYNCH_DESCRIPTION = "Get Local Profile Synchronization"; static const char * CMD_SET_LOCAL_PROFILE_SYNCH_DESCRIPTION = "Set Local Profile Synchronization\n\t\t\tWhere is:\n\t\t\t 0 - LocalSynchronizationDisabled\n\t\t\t 1 - LocalUserProfileSynchronization\n\t\t\t 2 - LocalAdminProfileSynchronization\n\t\t\t 3 - UnrestrictedSynchronization\n\t\t\t 4 - LocalSynchronizationReserved"; #endif //WIRELESS_CONFIGURATION_SAMPLE_H