realtimenetprots/sipfw/SIP/Common/inc/sipinternalerr.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * Name          : sipinternalerr.h
       
    16 * Part of       : SIP Common
       
    17 * Error codes visible only internally to SIP core stack
       
    18 * Version       : SIP/4.0
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 /**
       
    26  @internalComponent
       
    27 */
       
    28 
       
    29 
       
    30 #ifndef SIPINTERNALERR_H
       
    31 #define SIPINTERNALERR_H
       
    32 
       
    33 #include <e32std.h>
       
    34 
       
    35 // Part of unique SIP error codes from Symbian is reserved for internal use.
       
    36 // This range is from -17749 to -17745 and it is between the error codes
       
    37 // reserved for SIP Client API and SIP Codec API.
       
    38 
       
    39 // INVITE transaction has ended
       
    40 const TInt KInviteTransactionCompleted = -17745;
       
    41 
       
    42 // A CANCEL has been received for a previously received INVITE.
       
    43 const TInt KInviteTransactionCancelled = -17746;
       
    44 
       
    45 // A HTTP digest challenge has been received
       
    46 const TInt KChallengeReceived = -17747;
       
    47 
       
    48 #endif // SIPINTERNALERR_H
       
    49 
       
    50 // End of File