1.1 --- a/epoc32/include/siperr.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,96 +0,0 @@
1.4 -/*
1.5 -* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 -* All rights reserved.
1.7 -* This component and the accompanying materials are made available
1.8 -* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.9 -* which accompanies this distribution, and is available
1.10 -* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 -*
1.12 -* Initial Contributors:
1.13 -* Nokia Corporation - initial contribution.
1.14 -*
1.15 -* Contributors:
1.16 -*
1.17 -* Description:
1.18 -* Name : siperr.h
1.19 -* Part of : SIP Client API
1.20 -* Interface : SDK, SIP Client API
1.21 -* Version : 1.0
1.22 -*
1.23 -*/
1.24 -
1.25 -
1.26 -
1.27 -#ifndef SIPERR_H
1.28 -#define SIPERR_H
1.29 -
1.30 -#include <e32base.h>
1.31 -
1.32 -/** @file
1.33 -* @publishedAll
1.34 -* @released
1.35 -*/
1.36 -
1.37 -/** SIP message was malformed */
1.38 -const TInt KErrSIPMalformedMessage = -17700;
1.39 -
1.40 -/** Invalid SIP response received from registrar*/
1.41 -const TInt KErrSIPInvalidRegistrarResponse = -17701;
1.42 -
1.43 -/** SIP Request pending */
1.44 -const TInt KErrSIPRequestPending = -17702;
1.45 -
1.46 -/** The action cannot be performed in the current transaction state */
1.47 -const TInt KErrSIPInvalidTransactionState = -17703;
1.48 -
1.49 -/** Not allowed in dialogs current state */
1.50 -const TInt KErrSIPInvalidDialogState = -17704;
1.51 -
1.52 -/** Invalid request in SIP dialog */
1.53 -const TInt KErrSIPInvalidDialogRequest = -17705;
1.54 -
1.55 -/** Invalid response in SIP dialog */
1.56 -const TInt KErrSIPInvalidDialogResponse = -17706;
1.57 -
1.58 -/** Sending a SIP message failed. For example ICMP error occured */
1.59 -const TInt KErrSIPTransportFailure = -17707;
1.60 -
1.61 -/** No ACK was received after sending a 2xx response */
1.62 -const TInt KErrSIPNoAckReceived = -17708;
1.63 -
1.64 -/** Not allowed in registration's current state */
1.65 -const TInt KErrSIPInvalidRegistrationState = -17709;
1.66 -
1.67 -/** The contact given did not contain user part */
1.68 -const TInt KErrSIPInvalidContact = -17710;
1.69 -
1.70 -/** Object can't access a resource, since that has been deleted by user.
1.71 -The user is expected to delete this object as it can no longer be used. */
1.72 -const TInt KErrSIPResourceNotAvailable = -17711;
1.73 -
1.74 -/** DNS query for the remote address failed */
1.75 -const TInt KErrSIPResolvingFailure = -17712;
1.76 -
1.77 -/** Authentication with a server failed */
1.78 -const TInt KErrSIPForbidden = -17713;
1.79 -
1.80 -/** Maximum number of allowed SigComp compartments exceeded */
1.81 -const TInt KErrSIPMaxCompartmentsInUse = -17714;
1.82 -
1.83 -/** Refresh initiated client transaction was terminated with
1.84 -a 3xx, 4xx, 5xx or 6xx response.*/
1.85 -const TInt KErrSIPTerminatedWithResponse = -17715;
1.86 -
1.87 -/** Provided SIP outbound proxy is not responding*/
1.88 -const TInt KErrSIPOutboundProxyNotResponding = -17716;
1.89 -
1.90 -/** The URI type is not allowed in some field of the particular SIP message.
1.91 -Note that this does not mean that the URI type is forbidden in general.
1.92 -For example Contact-header of an INVITE must always contain a SIP-URI.
1.93 -Any other types are rejected with this error code. */
1.94 -const TInt KErrSIPInvalidURIType = -17717;
1.95 -
1.96 -/** ICMP error has occured */
1.97 -const TInt KErrSIPICMPFailure = -17718;
1.98 -
1.99 -#endif //SIPERR_H