realtimenetprots/sipfw/SIP/sipapi/inc/sipprivatecrkeys.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2007-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          : sipprivatecrkeys.h
       
    16 * Part of       : SIP API
       
    17 * Version       : SIP/5.0
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 /**
       
    25  @internalComponent
       
    26 */
       
    27 
       
    28 #ifndef SIPPRIVATECRKEYS_H
       
    29 #define SIPPRIVATECRKEYS_H
       
    30 
       
    31 // INCLUDES
       
    32 #include <e32def.h>
       
    33 
       
    34 #if !defined(SIPCRKEYS_H)
       
    35 const TUid KCRUidSIP = { 0x101FED88 };
       
    36 #endif
       
    37 
       
    38 /// The number of "UDVM cycles" available to decompress each 
       
    39 /// bit in a SigComp message.
       
    40 const TUint32 KSIPSigCompCPB = 0x04;
       
    41 
       
    42 /// The number of bytes offered to a particular compartment 
       
    43 /// for the creation of state.
       
    44 const TUint32 KSIPSigCompSMS = 0x05;
       
    45 
       
    46 /// Amount of memory available to decompress SigComp message
       
    47 const TUint32 KSIPSigCompDMS = 0x06;
       
    48 
       
    49 /// The used SigComp algorithm
       
    50 const TUint32 KSIPSigCompAlgorithm = 0x07;
       
    51 
       
    52 /// Maximum number of compartments
       
    53 const TUint32 KSIPSigCompMaxCompartments = 0x08;
       
    54 
       
    55 /// If this parameter has a non-zero value, 
       
    56 /// an empty value is used for the response-parameter in Authorization-header
       
    57 /// after a SQN synchronization in IMS authentication 
       
    58 const TUint32 KSIPSendEmptyResponseParameterAfterSqnFailure = 0x09;
       
    59 
       
    60 /// Maximum number of pending server transactions.
       
    61 /// When this value is reached, SIP stops handling new incoming SIP requests
       
    62 /// until the current server transactions start to complete.
       
    63 const TUint32 KSIPMaxPendingServerTransactions = 0x0a;
       
    64 #endif // SIPPRIVATECRKEYS_H
       
    65 
       
    66 // End of File