mirror of https://github.com/UMSKT/xpmgr.git
1755 lines
33 KiB
C
1755 lines
33 KiB
C
/*****************************************************************************
|
|
*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
*
|
|
* Module Name:
|
|
*
|
|
* rtcerr.mc
|
|
*
|
|
* Abstract:
|
|
*
|
|
* Error Messages for RTC Core API
|
|
*
|
|
*****************************************************************************/
|
|
// Possible error codes from SIP interfaces
|
|
//
|
|
// Values are 32 bit values laid out as follows:
|
|
//
|
|
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
|
|
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
|
// +---+-+-+-----------------------+-------------------------------+
|
|
// |Sev|C|R| Facility | Code |
|
|
// +---+-+-+-----------------------+-------------------------------+
|
|
//
|
|
// where
|
|
//
|
|
// Sev - is the severity code
|
|
//
|
|
// 00 - Success
|
|
// 01 - Informational
|
|
// 10 - Warning
|
|
// 11 - Error
|
|
//
|
|
// C - is the Customer code flag
|
|
//
|
|
// R - is a reserved bit
|
|
//
|
|
// Facility - is the facility code
|
|
//
|
|
// Code - is the facility's status code
|
|
//
|
|
//
|
|
// Define the facility codes
|
|
//
|
|
#define FACILITY_SIP_STATUS_CODE 0xEF
|
|
#define FACILITY_RTC_INTERFACE 0xEE
|
|
#define FACILITY_PINT_STATUS_CODE 0xF0
|
|
|
|
|
|
//
|
|
// Define the severity codes
|
|
//
|
|
#define STATUS_SEVERITY_SUCCESS 0x0
|
|
#define STATUS_SEVERITY_RTC_ERROR 0x2
|
|
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_CODECS_DO_NOT_MATCH
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No matching codecs with peer
|
|
//
|
|
#define RTC_E_SIP_CODECS_DO_NOT_MATCH ((HRESULT)0x80EE0000L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_STREAM_PRESENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Parsing SIP failed
|
|
// The stream to be started is already present
|
|
//
|
|
#define RTC_E_SIP_STREAM_PRESENT ((HRESULT)0x80EE0001L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_STREAM_NOT_PRESENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The stream to be stopped is not present
|
|
//
|
|
#define RTC_E_SIP_STREAM_NOT_PRESENT ((HRESULT)0x80EE0002L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_NO_STREAM
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No stream is active
|
|
//
|
|
#define RTC_E_SIP_NO_STREAM ((HRESULT)0x80EE0003L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_PARSE_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Parsing SIP failed
|
|
//
|
|
#define RTC_E_SIP_PARSE_FAILED ((HRESULT)0x80EE0004L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_HEADER_NOT_PRESENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The SIP header is not present in the message
|
|
//
|
|
#define RTC_E_SIP_HEADER_NOT_PRESENT ((HRESULT)0x80EE0005L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_NOT_PRESENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// SDP is not present in the SIP message
|
|
//
|
|
#define RTC_E_SDP_NOT_PRESENT ((HRESULT)0x80EE0006L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_PARSE_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Parsing SDP failed
|
|
//
|
|
#define RTC_E_SDP_PARSE_FAILED ((HRESULT)0x80EE0007L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_UPDATE_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// SDP does not match the previous one
|
|
//
|
|
#define RTC_E_SDP_UPDATE_FAILED ((HRESULT)0x80EE0008L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_MULTICAST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Multicast is not supported
|
|
//
|
|
#define RTC_E_SDP_MULTICAST ((HRESULT)0x80EE0009L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_CONNECTION_ADDR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Media does not contain connection address
|
|
//
|
|
#define RTC_E_SDP_CONNECTION_ADDR ((HRESULT)0x80EE000AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_NO_MEDIA
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No media is available for the session
|
|
//
|
|
#define RTC_E_SDP_NO_MEDIA ((HRESULT)0x80EE000BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// SIP Transaction timed out
|
|
//
|
|
#define RTC_E_SIP_TIMEOUT ((HRESULT)0x80EE000CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SDP_FAILED_TO_BUILD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Failed to build SDP blob
|
|
//
|
|
#define RTC_E_SDP_FAILED_TO_BUILD ((HRESULT)0x80EE000DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_INVITE_TRANSACTION_PENDING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Currently processing another INVITE transaction
|
|
//
|
|
#define RTC_E_SIP_INVITE_TRANSACTION_PENDING ((HRESULT)0x80EE000EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_AUTH_HEADER_SENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Authorization header was sent in a previous request
|
|
//
|
|
#define RTC_E_SIP_AUTH_HEADER_SENT ((HRESULT)0x80EE000FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_AUTH_TYPE_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Authentication type requested is not supported
|
|
//
|
|
#define RTC_E_SIP_AUTH_TYPE_NOT_SUPPORTED ((HRESULT)0x80EE0010L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_AUTH_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Authentication Failed
|
|
//
|
|
#define RTC_E_SIP_AUTH_FAILED ((HRESULT)0x80EE0011L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_SIP_URL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The SIP URL is not valid
|
|
//
|
|
#define RTC_E_INVALID_SIP_URL ((HRESULT)0x80EE0012L)
|
|
|
|
//
|
|
// MessageId: RTC_E_DESTINATION_ADDRESS_LOCAL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Destination Address belongs to the local machine
|
|
//
|
|
#define RTC_E_DESTINATION_ADDRESS_LOCAL ((HRESULT)0x80EE0013L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_ADDRESS_LOCAL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Local Address is invalid, check the profile
|
|
//
|
|
#define RTC_E_INVALID_ADDRESS_LOCAL ((HRESULT)0x80EE0014L)
|
|
|
|
//
|
|
// MessageId: RTC_E_DESTINATION_ADDRESS_MULTICAST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Destination Address is a multicast address
|
|
//
|
|
#define RTC_E_DESTINATION_ADDRESS_MULTICAST ((HRESULT)0x80EE0015L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_PROXY_ADDRESS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Proxy Address is not valid
|
|
//
|
|
#define RTC_E_INVALID_PROXY_ADDRESS ((HRESULT)0x80EE0016L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_TRANSPORT_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Transport specified is not supported
|
|
//
|
|
#define RTC_E_SIP_TRANSPORT_NOT_SUPPORTED ((HRESULT)0x80EE0017L)
|
|
|
|
// SIP internal error codes
|
|
//
|
|
// MessageId: RTC_E_SIP_NEED_MORE_DATA
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Need more data for parsing a whole SIP message
|
|
//
|
|
#define RTC_E_SIP_NEED_MORE_DATA ((HRESULT)0x80EE0018L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_CALL_DISCONNECTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Call has been disconnected
|
|
//
|
|
#define RTC_E_SIP_CALL_DISCONNECTED ((HRESULT)0x80EE0019L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_REQUEST_DESTINATION_ADDR_NOT_PRESENT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Request destination address is not known
|
|
//
|
|
#define RTC_E_SIP_REQUEST_DESTINATION_ADDR_NOT_PRESENT ((HRESULT)0x80EE001AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_UDP_SIZE_EXCEEDED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The sip message size is greater than the UDP message size allowed
|
|
//
|
|
#define RTC_E_SIP_UDP_SIZE_EXCEEDED ((HRESULT)0x80EE001BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_SSL_TUNNEL_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Cannot establish SSL tunnel to Http proxy
|
|
//
|
|
#define RTC_E_SIP_SSL_TUNNEL_FAILED ((HRESULT)0x80EE001CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_SSL_NEGOTIATION_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Timeout during SSL Negotiation
|
|
//
|
|
#define RTC_E_SIP_SSL_NEGOTIATION_TIMEOUT ((HRESULT)0x80EE001DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_STACK_SHUTDOWN
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Sip Stack is already shutdown
|
|
//
|
|
#define RTC_E_SIP_STACK_SHUTDOWN ((HRESULT)0x80EE001EL)
|
|
|
|
// media error codes
|
|
//
|
|
// MessageId: RTC_E_MEDIA_CONTROLLER_STATE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Operation not allowed in current media controller state
|
|
//
|
|
#define RTC_E_MEDIA_CONTROLLER_STATE ((HRESULT)0x80EE001FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_NEED_TERMINAL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Can not find device
|
|
//
|
|
#define RTC_E_MEDIA_NEED_TERMINAL ((HRESULT)0x80EE0020L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_AUDIO_DEVICE_NOT_AVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Audio device is not available
|
|
//
|
|
#define RTC_E_MEDIA_AUDIO_DEVICE_NOT_AVAILABLE ((HRESULT)0x80EE0021L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_VIDEO_DEVICE_NOT_AVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Video device is not available
|
|
//
|
|
#define RTC_E_MEDIA_VIDEO_DEVICE_NOT_AVAILABLE ((HRESULT)0x80EE0022L)
|
|
|
|
//
|
|
// MessageId: RTC_E_START_STREAM
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Can not start stream
|
|
//
|
|
#define RTC_E_START_STREAM ((HRESULT)0x80EE0023L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_AEC
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Failed to enable acoustic echo cancellation
|
|
//
|
|
#define RTC_E_MEDIA_AEC ((HRESULT)0x80EE0024L)
|
|
|
|
// Core error codes
|
|
//
|
|
// MessageId: RTC_E_CLIENT_NOT_INITIALIZED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Client not initialized
|
|
//
|
|
#define RTC_E_CLIENT_NOT_INITIALIZED ((HRESULT)0x80EE0025L)
|
|
|
|
//
|
|
// MessageId: RTC_E_CLIENT_ALREADY_INITIALIZED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Client already initialized
|
|
//
|
|
#define RTC_E_CLIENT_ALREADY_INITIALIZED ((HRESULT)0x80EE0026L)
|
|
|
|
//
|
|
// MessageId: RTC_E_CLIENT_ALREADY_SHUT_DOWN
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Client already shut down
|
|
//
|
|
#define RTC_E_CLIENT_ALREADY_SHUT_DOWN ((HRESULT)0x80EE0027L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PRESENCE_NOT_ENABLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Presence not enabled
|
|
//
|
|
#define RTC_E_PRESENCE_NOT_ENABLED ((HRESULT)0x80EE0028L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_SESSION_TYPE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid session type
|
|
//
|
|
#define RTC_E_INVALID_SESSION_TYPE ((HRESULT)0x80EE0029L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_SESSION_STATE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid session state
|
|
//
|
|
#define RTC_E_INVALID_SESSION_STATE ((HRESULT)0x80EE002AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_PROFILE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No valid profile for this operation
|
|
//
|
|
#define RTC_E_NO_PROFILE ((HRESULT)0x80EE002BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_LOCAL_PHONE_NEEDED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// A local phone number is needed
|
|
//
|
|
#define RTC_E_LOCAL_PHONE_NEEDED ((HRESULT)0x80EE002CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_DEVICE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No preferred device
|
|
//
|
|
#define RTC_E_NO_DEVICE ((HRESULT)0x80EE002DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_PROFILE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid profile
|
|
//
|
|
#define RTC_E_INVALID_PROFILE ((HRESULT)0x80EE002EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_PROVISION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No provision tag in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_PROVISION ((HRESULT)0x80EE002FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_KEY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No profile key
|
|
//
|
|
#define RTC_E_PROFILE_NO_KEY ((HRESULT)0x80EE0030L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_NAME
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No profile name
|
|
//
|
|
#define RTC_E_PROFILE_NO_NAME ((HRESULT)0x80EE0031L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_USER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No user tag in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_USER ((HRESULT)0x80EE0032L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_USER_URI
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No user URI in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_USER_URI ((HRESULT)0x80EE0033L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_SERVER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No server tag in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_SERVER ((HRESULT)0x80EE0034L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_SERVER_ADDRESS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server tag missing address in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_SERVER_ADDRESS ((HRESULT)0x80EE0035L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_NO_SERVER_PROTOCOL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server tag missing protocol in profile
|
|
//
|
|
#define RTC_E_PROFILE_NO_SERVER_PROTOCOL ((HRESULT)0x80EE0036L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SERVER_PROTOCOL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid server protocol in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SERVER_PROTOCOL ((HRESULT)0x80EE0037L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SERVER_AUTHMETHOD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid server authentication method in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SERVER_AUTHMETHOD ((HRESULT)0x80EE0038L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SERVER_ROLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid server role in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SERVER_ROLE ((HRESULT)0x80EE0039L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_MULTIPLE_REGISTRARS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Multiple registrar servers in profile
|
|
//
|
|
#define RTC_E_PROFILE_MULTIPLE_REGISTRARS ((HRESULT)0x80EE003AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SESSION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid session tag in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SESSION ((HRESULT)0x80EE003BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SESSION_PARTY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid session party in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SESSION_PARTY ((HRESULT)0x80EE003CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_INVALID_SESSION_TYPE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid session type in profile
|
|
//
|
|
#define RTC_E_PROFILE_INVALID_SESSION_TYPE ((HRESULT)0x80EE003DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_OPERATION_WITH_TOO_MANY_PARTICIPANTS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The operation failed because of too many participants in the session
|
|
//
|
|
#define RTC_E_OPERATION_WITH_TOO_MANY_PARTICIPANTS ((HRESULT)0x80EE003EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_BASIC_AUTH_SET_TLS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Must set transport to TLS if Basic Auth is allowed
|
|
//
|
|
#define RTC_E_BASIC_AUTH_SET_TLS ((HRESULT)0x80EE003FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_HIGH_SECURITY_SET_TLS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Must set transport to TLS if high security mode is needed
|
|
//
|
|
#define RTC_E_SIP_HIGH_SECURITY_SET_TLS ((HRESULT)0x80EE0040L)
|
|
|
|
//
|
|
// MessageId: RTC_S_ROAMING_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server does not support this type of roaming
|
|
//
|
|
#define RTC_S_ROAMING_NOT_SUPPORTED ((HRESULT)0x00EE0041L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PROFILE_SERVER_UNAUTHORIZED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server address does not match an authorized domain in profile
|
|
//
|
|
#define RTC_E_PROFILE_SERVER_UNAUTHORIZED ((HRESULT)0x80EE0042L)
|
|
|
|
//
|
|
// MessageId: RTC_E_DUPLICATE_REALM
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Duplicate realm exists in an enabled profile
|
|
//
|
|
#define RTC_E_DUPLICATE_REALM ((HRESULT)0x80EE0043L)
|
|
|
|
//
|
|
// MessageId: RTC_E_POLICY_NOT_ALLOW
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Current policy settings do not allow this action
|
|
//
|
|
#define RTC_E_POLICY_NOT_ALLOW ((HRESULT)0x80EE0044L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PORT_MAPPING_UNAVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Port mapping can not be obtained from the port manager
|
|
//
|
|
#define RTC_E_PORT_MAPPING_UNAVAILABLE ((HRESULT)0x80EE0045L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PORT_MAPPING_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Port mapping failure returned from the port manager
|
|
//
|
|
#define RTC_E_PORT_MAPPING_FAILED ((HRESULT)0x80EE0046L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SECURITY_LEVEL_NOT_COMPATIBLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The local and remote security levels are not compatible.
|
|
//
|
|
#define RTC_E_SECURITY_LEVEL_NOT_COMPATIBLE ((HRESULT)0x80EE0047L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SECURITY_LEVEL_NOT_DEFINED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The security level is not defined
|
|
//
|
|
#define RTC_E_SECURITY_LEVEL_NOT_DEFINED ((HRESULT)0x80EE0048L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SECURITY_LEVEL_NOT_SUPPORTED_BY_PARTICIPANT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Participant could not support the requested security level
|
|
//
|
|
#define RTC_E_SECURITY_LEVEL_NOT_SUPPORTED_BY_PARTICIPANT ((HRESULT)0x80EE0049L)
|
|
|
|
//
|
|
// MessageId: RTC_E_DUPLICATE_BUDDY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Buddy already exists
|
|
//
|
|
#define RTC_E_DUPLICATE_BUDDY ((HRESULT)0x80EE004AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_DUPLICATE_WATCHER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Watcher already exists
|
|
//
|
|
#define RTC_E_DUPLICATE_WATCHER ((HRESULT)0x80EE004BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_MALFORMED_XML
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Malformed XML
|
|
//
|
|
#define RTC_E_MALFORMED_XML ((HRESULT)0x80EE004CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_ROAMING_OPERATION_INTERRUPTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Roaming operation interrupted. It may succeed or fail.
|
|
//
|
|
#define RTC_E_ROAMING_OPERATION_INTERRUPTED ((HRESULT)0x80EE004DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_ROAMING_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Roaming session failed
|
|
//
|
|
#define RTC_E_ROAMING_FAILED ((HRESULT)0x80EE004EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_BUDDY_LIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Buddy list is invalid
|
|
//
|
|
#define RTC_E_INVALID_BUDDY_LIST ((HRESULT)0x80EE004FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_ACL_LIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// ACL list is invalid
|
|
//
|
|
#define RTC_E_INVALID_ACL_LIST ((HRESULT)0x80EE0050L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_GROUP
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Group does not exist
|
|
//
|
|
#define RTC_E_NO_GROUP ((HRESULT)0x80EE0051L)
|
|
|
|
//
|
|
// MessageId: RTC_E_DUPLICATE_GROUP
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Group already exists
|
|
//
|
|
#define RTC_E_DUPLICATE_GROUP ((HRESULT)0x80EE0052L)
|
|
|
|
//
|
|
// MessageId: RTC_E_TOO_MANY_GROUPS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Max number of groups has been reached
|
|
//
|
|
#define RTC_E_TOO_MANY_GROUPS ((HRESULT)0x80EE0053L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_BUDDY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Buddy does not exist
|
|
//
|
|
#define RTC_E_NO_BUDDY ((HRESULT)0x80EE0054L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_WATCHER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Watcher does not exist
|
|
//
|
|
#define RTC_E_NO_WATCHER ((HRESULT)0x80EE0055L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_REALM
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No realm is set
|
|
//
|
|
#define RTC_E_NO_REALM ((HRESULT)0x80EE0056L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NO_TRANSPORT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server can not be specified without a transport protocol
|
|
//
|
|
#define RTC_E_NO_TRANSPORT ((HRESULT)0x80EE0057L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NOT_EXIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The required item does not exist
|
|
//
|
|
#define RTC_E_NOT_EXIST ((HRESULT)0x80EE0058L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_PREFERENCE_LIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Preference list is invalid
|
|
//
|
|
#define RTC_E_INVALID_PREFERENCE_LIST ((HRESULT)0x80EE0059L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MAX_PENDING_OPERATIONS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Maximum number of pending operations reached
|
|
//
|
|
#define RTC_E_MAX_PENDING_OPERATIONS ((HRESULT)0x80EE005AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_TOO_MANY_RETRIES
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Too many attempts to resend a request
|
|
//
|
|
#define RTC_E_TOO_MANY_RETRIES ((HRESULT)0x80EE005BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_PORTRANGE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid port range
|
|
//
|
|
#define RTC_E_INVALID_PORTRANGE ((HRESULT)0x80EE005CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_CALL_CONNECTION_NOT_ESTABLISHED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Call connection has not been established
|
|
//
|
|
#define RTC_E_SIP_CALL_CONNECTION_NOT_ESTABLISHED ((HRESULT)0x80EE005DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_ADDITIONAL_PARTY_IN_TWO_PARTY_SESSION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Adding additional parties to two party session failed
|
|
//
|
|
#define RTC_E_SIP_ADDITIONAL_PARTY_IN_TWO_PARTY_SESSION ((HRESULT)0x80EE005EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_PARTY_ALREADY_IN_SESSION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Party already exists in session
|
|
//
|
|
#define RTC_E_SIP_PARTY_ALREADY_IN_SESSION ((HRESULT)0x80EE005FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_OTHER_PARTY_JOIN_IN_PROGRESS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Join operation is in progress for another party
|
|
//
|
|
#define RTC_E_SIP_OTHER_PARTY_JOIN_IN_PROGRESS ((HRESULT)0x80EE0060L)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_OBJECT_STATE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Object state does not allow to perform this operation
|
|
//
|
|
#define RTC_E_INVALID_OBJECT_STATE ((HRESULT)0x80EE0061L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PRESENCE_ENABLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Presence is enabled
|
|
//
|
|
#define RTC_E_PRESENCE_ENABLED ((HRESULT)0x80EE0062L)
|
|
|
|
//
|
|
// MessageId: RTC_E_ROAMING_ENABLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Roaming is enabled
|
|
//
|
|
#define RTC_E_ROAMING_ENABLED ((HRESULT)0x80EE0063L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_TLS_INCOMPATIBLE_ENCRYPTION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Incompatible TLS encryption
|
|
//
|
|
#define RTC_E_SIP_TLS_INCOMPATIBLE_ENCRYPTION ((HRESULT)0x80EE0064L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_INVALID_CERTIFICATE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid certificate
|
|
//
|
|
#define RTC_E_SIP_INVALID_CERTIFICATE ((HRESULT)0x80EE0065L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_DNS_FAIL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// DNS lookup fails
|
|
//
|
|
#define RTC_E_SIP_DNS_FAIL ((HRESULT)0x80EE0066L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_TCP_FAIL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Fails to make a TCP connection
|
|
//
|
|
#define RTC_E_SIP_TCP_FAIL ((HRESULT)0x80EE0067L)
|
|
|
|
//
|
|
// MessageId: RTC_E_TOO_SMALL_EXPIRES_VALUE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Expires value received from the server is too small
|
|
//
|
|
#define RTC_E_TOO_SMALL_EXPIRES_VALUE ((HRESULT)0x80EE0068L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_TLS_FAIL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Fails to make a TLS connection
|
|
//
|
|
#define RTC_E_SIP_TLS_FAIL ((HRESULT)0x80EE0069L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NOT_PRESENCE_PROFILE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// A presence profile must be used
|
|
//
|
|
#define RTC_E_NOT_PRESENCE_PROFILE ((HRESULT)0x80EE006AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_INVITEE_PARTY_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invitee connection fails
|
|
//
|
|
#define RTC_E_SIP_INVITEE_PARTY_TIMEOUT ((HRESULT)0x80EE006BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_AUTH_TIME_SKEW
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Authentication failure because of time skew between client and server
|
|
//
|
|
#define RTC_E_SIP_AUTH_TIME_SKEW ((HRESULT)0x80EE006CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_REGISTRATION_STATE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Invalid registration state
|
|
//
|
|
#define RTC_E_INVALID_REGISTRATION_STATE ((HRESULT)0x80EE006DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_DISABLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Media is disabled
|
|
//
|
|
#define RTC_E_MEDIA_DISABLED ((HRESULT)0x80EE006EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_ENABLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Media is enabled
|
|
//
|
|
#define RTC_E_MEDIA_ENABLED ((HRESULT)0x80EE006FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_REFER_NOT_ACCEPTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Refer has not been accepted
|
|
//
|
|
#define RTC_E_REFER_NOT_ACCEPTED ((HRESULT)0x80EE0070L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REFER_NOT_ALLOWED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Refer operation is not allowed in this session
|
|
//
|
|
#define RTC_E_REFER_NOT_ALLOWED ((HRESULT)0x80EE0071L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REFER_NOT_EXIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Refer session does not exist or has finished
|
|
//
|
|
#define RTC_E_REFER_NOT_EXIST ((HRESULT)0x80EE0072L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_HOLD_OPERATION_PENDING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Currently an hold operation is pending
|
|
//
|
|
#define RTC_E_SIP_HOLD_OPERATION_PENDING ((HRESULT)0x80EE0073L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_UNHOLD_OPERATION_PENDING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Currently an unhold operation is pending
|
|
//
|
|
#define RTC_E_SIP_UNHOLD_OPERATION_PENDING ((HRESULT)0x80EE0074L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_SESSION_NOT_EXIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Media session does not exist
|
|
//
|
|
#define RTC_E_MEDIA_SESSION_NOT_EXIST ((HRESULT)0x80EE0075L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MEDIA_SESSION_IN_HOLD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Media session is in hold
|
|
//
|
|
#define RTC_E_MEDIA_SESSION_IN_HOLD ((HRESULT)0x80EE0076L)
|
|
|
|
//
|
|
// MessageId: RTC_E_ANOTHER_MEDIA_SESSION_ACTIVE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Another media session is active
|
|
//
|
|
#define RTC_E_ANOTHER_MEDIA_SESSION_ACTIVE ((HRESULT)0x80EE0077L)
|
|
|
|
//
|
|
// MessageId: RTC_E_MAX_REDIRECTS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Too many redirects
|
|
//
|
|
#define RTC_E_MAX_REDIRECTS ((HRESULT)0x80EE0078L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REDIRECT_PROCESSING_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Processing redirect failed
|
|
//
|
|
#define RTC_E_REDIRECT_PROCESSING_FAILED ((HRESULT)0x80EE0079L)
|
|
|
|
//
|
|
// MessageId: RTC_E_LISTENING_SOCKET_NOT_EXIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Listening socket does not exist
|
|
//
|
|
#define RTC_E_LISTENING_SOCKET_NOT_EXIST ((HRESULT)0x80EE007AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_INVALID_LISTEN_SOCKET
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Specified address and port is invalid
|
|
//
|
|
#define RTC_E_INVALID_LISTEN_SOCKET ((HRESULT)0x80EE007BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PORT_MANAGER_ALREADY_SET
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Port manager already set
|
|
//
|
|
#define RTC_E_PORT_MANAGER_ALREADY_SET ((HRESULT)0x80EE007CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SECURITY_LEVEL_ALREADY_SET
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The security level has already been set for this Media type can and can not be changed
|
|
//
|
|
#define RTC_E_SECURITY_LEVEL_ALREADY_SET ((HRESULT)0x80EE007DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_UDP_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// This feature is not supported when one of the server in profile has UDP transport
|
|
//
|
|
#define RTC_E_UDP_NOT_SUPPORTED ((HRESULT)0x80EE007EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_REFER_OPERATION_PENDING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Currently a refer operation is pending
|
|
//
|
|
#define RTC_E_SIP_REFER_OPERATION_PENDING ((HRESULT)0x80EE007FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PLATFORM_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// This operation is not supported on this Windows Platform.
|
|
//
|
|
#define RTC_E_PLATFORM_NOT_SUPPORTED ((HRESULT)0x80EE0080L)
|
|
|
|
//
|
|
// MessageId: RTC_E_SIP_PEER_PARTICIPANT_IN_MULTIPARTY_SESSION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// A peer participant cannot be added to a multiparty session
|
|
//
|
|
#define RTC_E_SIP_PEER_PARTICIPANT_IN_MULTIPARTY_SESSION ((HRESULT)0x80EE0081L)
|
|
|
|
//
|
|
// MessageId: RTC_E_NOT_ALLOWED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// This action is not allowed
|
|
//
|
|
#define RTC_E_NOT_ALLOWED ((HRESULT)0x80EE0082L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REGISTRATION_DEACTIVATED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The user is being moved
|
|
//
|
|
#define RTC_E_REGISTRATION_DEACTIVATED ((HRESULT)0x80EE0083L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REGISTRATION_REJECTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The user's account was disabled or deleted or the SIP URI changed
|
|
//
|
|
#define RTC_E_REGISTRATION_REJECTED ((HRESULT)0x80EE0084L)
|
|
|
|
//
|
|
// MessageId: RTC_E_REGISTRATION_UNREGISTERED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The user was logged out because the user logged in elsewhere
|
|
//
|
|
#define RTC_E_REGISTRATION_UNREGISTERED ((HRESULT)0x80EE0085L)
|
|
|
|
// Error codes from SIP status codes
|
|
//
|
|
// MessageId: RTC_E_STATUS_INFO_TRYING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Trying
|
|
//
|
|
#define RTC_E_STATUS_INFO_TRYING ((HRESULT)0x00EF0064L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_INFO_RINGING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Ringing
|
|
//
|
|
#define RTC_E_STATUS_INFO_RINGING ((HRESULT)0x00EF00B4L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_INFO_CALL_FORWARDING
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Call Is Being Forwarded
|
|
//
|
|
#define RTC_E_STATUS_INFO_CALL_FORWARDING ((HRESULT)0x00EF00B5L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_INFO_QUEUED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Queued
|
|
//
|
|
#define RTC_E_STATUS_INFO_QUEUED ((HRESULT)0x00EF00B6L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SESSION_PROGRESS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Session Progress
|
|
//
|
|
#define RTC_E_STATUS_SESSION_PROGRESS ((HRESULT)0x00EF00B7L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SUCCESS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// OK
|
|
//
|
|
#define RTC_E_STATUS_SUCCESS ((HRESULT)0x00EF00C8L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_MULTIPLE_CHOICES
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Multiple Choices
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_MULTIPLE_CHOICES ((HRESULT)0x80EF012CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_MOVED_PERMANENTLY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Moved Permanently
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_MOVED_PERMANENTLY ((HRESULT)0x80EF012DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_MOVED_TEMPORARILY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Moved Temporarily
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_MOVED_TEMPORARILY ((HRESULT)0x80EF012EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_SEE_OTHER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// See Other
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_SEE_OTHER ((HRESULT)0x80EF012FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_USE_PROXY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Use Proxy
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_USE_PROXY ((HRESULT)0x80EF0131L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REDIRECT_ALTERNATIVE_SERVICE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Alternative Service
|
|
//
|
|
#define RTC_E_STATUS_REDIRECT_ALTERNATIVE_SERVICE ((HRESULT)0x80EF017CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_BAD_REQUEST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Bad Request
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_BAD_REQUEST ((HRESULT)0x80EF0190L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_UNAUTHORIZED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Unauthorized
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_UNAUTHORIZED ((HRESULT)0x80EF0191L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_PAYMENT_REQUIRED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Payment Required
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_PAYMENT_REQUIRED ((HRESULT)0x80EF0192L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_FORBIDDEN
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Forbidden
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_FORBIDDEN ((HRESULT)0x80EF0193L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_NOT_FOUND
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not Found
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_NOT_FOUND ((HRESULT)0x80EF0194L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_METHOD_NOT_ALLOWED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Method Not Allowed
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_METHOD_NOT_ALLOWED ((HRESULT)0x80EF0195L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_NOT_ACCEPTABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not Acceptable
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_NOT_ACCEPTABLE ((HRESULT)0x80EF0196L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_PROXY_AUTHENTICATION_REQUIRED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Proxy Authentication Required
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_PROXY_AUTHENTICATION_REQUIRED ((HRESULT)0x80EF0197L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_REQUEST_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Request Timeout
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_REQUEST_TIMEOUT ((HRESULT)0x80EF0198L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_CONFLICT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Conflict
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_CONFLICT ((HRESULT)0x80EF0199L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_GONE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Gone
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_GONE ((HRESULT)0x80EF019AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_LENGTH_REQUIRED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Length Required
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_LENGTH_REQUIRED ((HRESULT)0x80EF019BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_REQUEST_ENTITY_TOO_LARGE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Request Entity Too Large
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_REQUEST_ENTITY_TOO_LARGE ((HRESULT)0x80EF019DL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_REQUEST_URI_TOO_LARGE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Request-URI Too Long
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_REQUEST_URI_TOO_LARGE ((HRESULT)0x80EF019EL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_UNSUPPORTED_MEDIA_TYPE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Unsupported Media Type
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_UNSUPPORTED_MEDIA_TYPE ((HRESULT)0x80EF019FL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_BAD_EXTENSION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Bad Extension
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_BAD_EXTENSION ((HRESULT)0x80EF01A4L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_TEMPORARILY_NOT_AVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Temporarily Unavailable
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_TEMPORARILY_NOT_AVAILABLE ((HRESULT)0x80EF01E0L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_TRANSACTION_DOES_NOT_EXIST
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Call Leg/Transaction Does Not Exist
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_TRANSACTION_DOES_NOT_EXIST ((HRESULT)0x80EF01E1L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_LOOP_DETECTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Loop Detected
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_LOOP_DETECTED ((HRESULT)0x80EF01E2L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_TOO_MANY_HOPS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Too Many Hops
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_TOO_MANY_HOPS ((HRESULT)0x80EF01E3L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_ADDRESS_INCOMPLETE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Address Incomplete
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_ADDRESS_INCOMPLETE ((HRESULT)0x80EF01E4L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_AMBIGUOUS
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Ambiguous
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_AMBIGUOUS ((HRESULT)0x80EF01E5L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_CLIENT_BUSY_HERE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Busy Here
|
|
//
|
|
#define RTC_E_STATUS_CLIENT_BUSY_HERE ((HRESULT)0x80EF01E6L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_REQUEST_TERMINATED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Request Terminated
|
|
//
|
|
#define RTC_E_STATUS_REQUEST_TERMINATED ((HRESULT)0x80EF01E7L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_NOT_ACCEPTABLE_HERE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not Acceptable Here
|
|
//
|
|
#define RTC_E_STATUS_NOT_ACCEPTABLE_HERE ((HRESULT)0x80EF01E8L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_INTERNAL_ERROR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server Internal Error
|
|
//
|
|
#define RTC_E_STATUS_SERVER_INTERNAL_ERROR ((HRESULT)0x80EF01F4L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_NOT_IMPLEMENTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not Implemented
|
|
//
|
|
#define RTC_E_STATUS_SERVER_NOT_IMPLEMENTED ((HRESULT)0x80EF01F5L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_BAD_GATEWAY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Bad Gateway
|
|
//
|
|
#define RTC_E_STATUS_SERVER_BAD_GATEWAY ((HRESULT)0x80EF01F6L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_SERVICE_UNAVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Service Unavailable
|
|
//
|
|
#define RTC_E_STATUS_SERVER_SERVICE_UNAVAILABLE ((HRESULT)0x80EF01F7L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_SERVER_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Server Time-out
|
|
//
|
|
#define RTC_E_STATUS_SERVER_SERVER_TIMEOUT ((HRESULT)0x80EF01F8L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_SERVER_VERSION_NOT_SUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Version Not Supported
|
|
//
|
|
#define RTC_E_STATUS_SERVER_VERSION_NOT_SUPPORTED ((HRESULT)0x80EF01F9L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_GLOBAL_BUSY_EVERYWHERE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Busy Everywhere
|
|
//
|
|
#define RTC_E_STATUS_GLOBAL_BUSY_EVERYWHERE ((HRESULT)0x80EF0258L)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_GLOBAL_DECLINE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Decline
|
|
//
|
|
#define RTC_E_STATUS_GLOBAL_DECLINE ((HRESULT)0x80EF025BL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_GLOBAL_DOES_NOT_EXIST_ANYWHERE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Does Not Exist Anywhere
|
|
//
|
|
#define RTC_E_STATUS_GLOBAL_DOES_NOT_EXIST_ANYWHERE ((HRESULT)0x80EF025CL)
|
|
|
|
//
|
|
// MessageId: RTC_E_STATUS_GLOBAL_NOT_ACCEPTABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not Acceptable
|
|
//
|
|
#define RTC_E_STATUS_GLOBAL_NOT_ACCEPTABLE ((HRESULT)0x80EF025EL)
|
|
|
|
// Error codes from PINT status codes
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_BUSY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Busy
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_BUSY ((HRESULT)0x80F00005L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_NO_ANSWER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// No Answer
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_NO_ANSWER ((HRESULT)0x80F00006L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_ALL_BUSY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// All Busy
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_ALL_BUSY ((HRESULT)0x80F00007L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_PL_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Primary Leg Failed
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_PL_FAILED ((HRESULT)0x80F00008L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_SW_FAILED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Switch Failed
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_SW_FAILED ((HRESULT)0x80F00009L)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_CANCELLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Cancelled
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_CANCELLED ((HRESULT)0x80F0000AL)
|
|
|
|
//
|
|
// MessageId: RTC_E_PINT_STATUS_REJECTED_BADNUMBER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Bad Number
|
|
//
|
|
#define RTC_E_PINT_STATUS_REJECTED_BADNUMBER ((HRESULT)0x80F0000BL)
|
|
|
|
|