sipplugins/sippsipadapter/src/CWPSIPAdapter.cpp
branchRCL_3
changeset 56 2c7192069824
parent 41 f54bfd820e04
equal deleted inserted replaced
49:0a1ad22c7bdc 56:2c7192069824
    50 _LIT( KParmSECNEG,     "SECNEG" );
    50 _LIT( KParmSECNEG,     "SECNEG" );
    51 _LIT( KParmLR,         "LR" );
    51 _LIT( KParmLR,         "LR" );
    52 _LIT( KParmLOCK,       "LOCK" );
    52 _LIT( KParmLOCK,       "LOCK" );
    53 _LIT( KParmAUTOREG,    "AUTOREG" );
    53 _LIT( KParmAUTOREG,    "AUTOREG" );
    54 _LIT( KParmSIGQOS,     "SIGQOS" );
    54 _LIT( KParmSIGQOS,     "SIGQOS" );
    55 _LIT( KParmBearerID,   "PBEARERID" );
       
    56 
    55 
    57 // For other purposes.
    56 // For other purposes.
    58 const TUint32 KNotSet = 0xffffffff;
    57 const TUint32 KNotSet = 0xffffffff;
    59 
    58 
    60 // ---------------------------------------------------------------------------
    59 // ---------------------------------------------------------------------------
   499                 err = lex.Val( parmVal, EDecimal );
   498                 err = lex.Val( parmVal, EDecimal );
   500                 if ( KErrNone == err )
   499                 if ( KErrNone == err )
   501                     {
   500                     {
   502                     iCurrentSIPItem->SetSigQos( parmVal );
   501                     iCurrentSIPItem->SetSigQos( parmVal );
   503                     }
   502                     }
   504                 }
       
   505             
       
   506             else if(aParameter.Name() == KParmBearerID )
       
   507                 {
       
   508                 TInt bearerid;
       
   509                 TLex8 lex( tmpValue->Des() );
       
   510                 User::LeaveIfError( lex.Val( bearerid ) );
       
   511                 iCurrentSIPItem->SetBearerID((TUint32) bearerid );
       
   512                 }
   503                 }
   513             break;
   504             break;
   514             }
   505             }
   515         case EWPParameterAppRef:
   506         case EWPParameterAppRef:
   516             {
   507             {