Connection Tests - Constants

Definition


#include <dwc.h>


enum DWCTestInetResult {
    DWC_TESTINET_SUCCEEDED
    DWC_TESTINET_FAILED
    DWC_TESTINET_FAILED_TIMEOUT
    DWC_TESTINET_FAILED_DNS
    DWC_TESTINET_FAILED_CONNECT
    DWC_TESTINET_FAILED_INVALIDRESPONSE
    DWC_TESTINET_FAILED_PROXY_DNS
    DWC_TESTINET_FAILED_PROXY_CONNECT
    DWC_TESTINET_FAILED_UNKNOWN
};

		

Enumeration Type that Indicates Connection Test Results

DWC_TESTINET_SUCCEEDED Connection to the Internet has been confirmed.
DWC_TESTINET_FAILED Connection test could not be performed.
DWC_TESTINET_FAILED_TIMEOUT Connection test failed (timeout error).
DWC_TESTINET_FAILED_DNS Connection test failed (DNS retrieval error).
DWC_TESTINET_FAILED_CONNECT Connection test failed (error in communicating with the connection test server).
DWC_TESTINET_FAILED_INVALIDRESPONSE Connection test failed (invalid response).
DWC_TESTINET_FAILED_PROXY_DNS Connection test failed (DNS retrieval error at the proxy server).
DWC_TESTINET_FAILED_PROXY_CONNECT Connection test failed (error in communicating with the connection test server via the proxy server).
DWC_TESTINET_FAILED_UNKNOWN Connection test failed (unknown error).

CONFIDENTIAL