realtimenetprots/sipfw/SigComp/SigCompEngine/api/sigcompstateitem.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        : SigCompStateItem.h
       
    16 * Part of     : SigComp / state items
       
    17 * Interface   : 
       
    18 * sigcomp state item
       
    19 * Version     : 1.0
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 
       
    25 #ifndef TSIGCOMPSTATEITEM_H
       
    26 #define TSIGCOMPSTATEITEM_H
       
    27 
       
    28 //  INCLUDES
       
    29 #include <e32base.h>
       
    30 
       
    31 // CLASS DECLARATION
       
    32 /**
       
    33 * @publishedPartner
       
    34 * @released
       
    35 *
       
    36 * @brief Class for collection of state item related parameters.
       
    37 * 
       
    38 * The SigComp state item as defined in RFC3320.
       
    39 */
       
    40 class TSigCompStateItem
       
    41     {
       
    42     public:
       
    43 
       
    44         /** State identifier */
       
    45         TPtrC8 iStateIdentifier;
       
    46 
       
    47         /** State length */
       
    48         TUint16 iStateLength;
       
    49 
       
    50         /** State address */
       
    51         TUint16 iStateAddress;
       
    52 
       
    53         /** State instruction */
       
    54         TUint16 iStateInstruction;
       
    55 
       
    56         /** State minimum access length */
       
    57         TUint16 iMinimumAccessLength;
       
    58 
       
    59         /** Full file name containing state value */
       
    60         TPtrC iStateValue;
       
    61     };
       
    62 
       
    63 #endif // TSIGCOMPSTATEITEM_H