sipplugins/sippsipadapter/src/CWPSIPAdapter.cpp
branchRCL_3
changeset 41 f54bfd820e04
parent 4 dd3853b8dc3f
child 51 8134400f8f89
child 56 2c7192069824
equal deleted inserted replaced
40:654ed625511d 41:f54bfd820e04
    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" );
    55 
    56 
    56 // For other purposes.
    57 // For other purposes.
    57 const TUint32 KNotSet = 0xffffffff;
    58 const TUint32 KNotSet = 0xffffffff;
    58 
    59 
    59 // ---------------------------------------------------------------------------
    60 // ---------------------------------------------------------------------------
   498                 err = lex.Val( parmVal, EDecimal );
   499                 err = lex.Val( parmVal, EDecimal );
   499                 if ( KErrNone == err )
   500                 if ( KErrNone == err )
   500                     {
   501                     {
   501                     iCurrentSIPItem->SetSigQos( parmVal );
   502                     iCurrentSIPItem->SetSigQos( parmVal );
   502                     }
   503                     }
       
   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 );
   503                 }
   512                 }
   504             break;
   513             break;
   505             }
   514             }
   506         case EWPParameterAppRef:
   515         case EWPParameterAppRef:
   507             {
   516             {