webservices/wsutils/src/senvtcptransportproperties.cpp
changeset 1 272b002df977
parent 0 62f9d29f7211
equal deleted inserted replaced
0:62f9d29f7211 1:272b002df977
   376 void CSenVtcpTransportProperties::SetMessageIdL( const TDesC8& aMessageId )
   376 void CSenVtcpTransportProperties::SetMessageIdL( const TDesC8& aMessageId )
   377     {
   377     {
   378     CSenTransportProperties::SetMessageIdL( aMessageId );
   378     CSenTransportProperties::SetMessageIdL( aMessageId );
   379     }
   379     }
   380     
   380     
   381 TInt CSenVtcpTransportProperties::OnewayMessageOnOffL( TBool& aOnewayMessageOnOff )
   381 EXPORT_C TInt CSenVtcpTransportProperties::OnewayMessageOnOffL( TBool& aOnewayMessageOnOff )
   382     {
   382     {
   383     return CSenTransportProperties::OnewayMessageOnOffL( aOnewayMessageOnOff );
   383     return CSenTransportProperties::OnewayMessageOnOffL( aOnewayMessageOnOff );
   384     }
   384     }
   385 
   385 
   386 void CSenVtcpTransportProperties::SetOnewayMessageOnOffL( TBool aOnewayMessageOnOff )
   386 EXPORT_C void CSenVtcpTransportProperties::SetOnewayMessageOnOffL( TBool aOnewayMessageOnOff )
   387     {
   387     {
   388     CSenTransportProperties::SetOnewayMessageOnOffL( aOnewayMessageOnOff );
   388     CSenTransportProperties::SetOnewayMessageOnOffL( aOnewayMessageOnOff );
   389     }
   389     }
   390     
   390     
   391 TInt CSenVtcpTransportProperties::HeartbeatL(TInt& aHeartbeat) 
   391 TInt CSenVtcpTransportProperties::HeartbeatL(TInt& aHeartbeat) 
   396 TInt CSenVtcpTransportProperties::SetHeartbeatL(TInt aHeartbeat) 
   396 TInt CSenVtcpTransportProperties::SetHeartbeatL(TInt aHeartbeat) 
   397     { 
   397     { 
   398     return CSenTransportProperties::SetHeartbeatL( aHeartbeat ); 
   398     return CSenTransportProperties::SetHeartbeatL( aHeartbeat ); 
   399     }
   399     }
   400     
   400     
   401 TInt CSenVtcpTransportProperties::SetMaxTimeToLiveL(TInt aMaxTTL) 
   401 EXPORT_C TInt CSenVtcpTransportProperties::SetMaxTimeToLiveL(TInt aMaxTTL) 
   402     { 
   402     { 
   403     return CSenTransportProperties::SetMaxTimeToLiveL( aMaxTTL ); 
   403     return CSenTransportProperties::SetMaxTimeToLiveL( aMaxTTL ); 
   404     }
   404     }
   405 
   405 
   406 TInt CSenVtcpTransportProperties::MaxTimeToLiveL(TInt& aMaxTTL) 
   406 EXPORT_C TInt CSenVtcpTransportProperties::MaxTimeToLiveL(TInt& aMaxTTL) 
   407     { 
   407     { 
   408     return CSenTransportProperties::MaxTimeToLiveL( aMaxTTL ); 
   408     return CSenTransportProperties::MaxTimeToLiveL( aMaxTTL ); 
   409     }
   409     }
   410 
   410 
   411 TInt CSenVtcpTransportProperties::SetMinTimeToLiveL(TInt aMinTTL) 
   411 EXPORT_C TInt CSenVtcpTransportProperties::SetMinTimeToLiveL(TInt aMinTTL) 
   412     { 
   412     { 
   413     return CSenTransportProperties::SetMinTimeToLiveL( aMinTTL ); 
   413     return CSenTransportProperties::SetMinTimeToLiveL( aMinTTL ); 
   414     }
   414     }
   415 
   415 
   416 TInt CSenVtcpTransportProperties::MinTimeToLiveL(TInt& aMinTTL) 
   416 EXPORT_C TInt CSenVtcpTransportProperties::MinTimeToLiveL(TInt& aMinTTL) 
   417     { 
   417     { 
   418     return CSenTransportProperties::MinTimeToLiveL( aMinTTL ); 
   418     return CSenTransportProperties::MinTimeToLiveL( aMinTTL ); 
   419     }
   419     }
   420     
   420     
   421 TInt CSenVtcpTransportProperties::SetMaxRetryTTLL(TInt aMaxRetryTTL)
   421 EXPORT_C TInt CSenVtcpTransportProperties::SetMaxRetryTTLL(TInt aMaxRetryTTL)
   422 	{ 
   422 	{ 
   423 	return SetIntPropertyL( KSenConnectionRetryMaxTTL, aMaxRetryTTL );
   423 	return SetIntPropertyL( KSenConnectionRetryMaxTTL, aMaxRetryTTL );
   424 	}
   424 	}
   425 	
   425 	
   426 TInt CSenVtcpTransportProperties::MaxRetryTTLL(TInt& aMaxRetryTTL)
   426 EXPORT_C TInt CSenVtcpTransportProperties::MaxRetryTTLL(TInt& aMaxRetryTTL)
   427 	{ 
   427 	{ 
   428 	return IntPropertyL( KSenConnectionRetryMaxTTL, aMaxRetryTTL ); 
   428 	return IntPropertyL( KSenConnectionRetryMaxTTL, aMaxRetryTTL ); 
   429 	}
   429 	}
   430 
   430 
   431 TInt CSenVtcpTransportProperties::SetMinRetryTTLL(TInt aMinRetryTTL)
   431 EXPORT_C TInt CSenVtcpTransportProperties::SetMinRetryTTLL(TInt aMinRetryTTL)
   432 	{ 
   432 	{ 
   433 	return SetIntPropertyL( KSenConnectionRetryMinTTL, aMinRetryTTL );
   433 	return SetIntPropertyL( KSenConnectionRetryMinTTL, aMinRetryTTL );
   434 	}
   434 	}
   435 	
   435 	
   436 TInt CSenVtcpTransportProperties:: MinRetryTTLL(TInt& aMinRetryTTL)
   436 EXPORT_C TInt CSenVtcpTransportProperties:: MinRetryTTLL(TInt& aMinRetryTTL)
   437 	{ 
   437 	{ 
   438 	return IntPropertyL( KSenConnectionRetryMinTTL, aMinRetryTTL ); 
   438 	return IntPropertyL( KSenConnectionRetryMinTTL, aMinRetryTTL ); 
   439 	}
   439 	}
   440 	
   440 	
   441 TInt CSenVtcpTransportProperties::SetRetryDeltaTimeoutL(TInt aTimeout)
   441 EXPORT_C TInt CSenVtcpTransportProperties::SetRetryDeltaTimeoutL(TInt aTimeout)
   442 	{ 
   442 	{ 
   443 	return SetIntPropertyL( KSenConnectionRetryDelta, aTimeout );
   443 	return SetIntPropertyL( KSenConnectionRetryDelta, aTimeout );
   444 	}
   444 	}
   445 	
   445 	
   446 TInt CSenVtcpTransportProperties::RetryDeltaTimeoutL(TInt& aTimeout)
   446 EXPORT_C TInt CSenVtcpTransportProperties::RetryDeltaTimeoutL(TInt& aTimeout)
   447 	{ 
   447 	{ 
   448 	return IntPropertyL( KSenConnectionRetryDelta, aTimeout ); 
   448 	return IntPropertyL( KSenConnectionRetryDelta, aTimeout ); 
   449 	}
   449 	}
   450 
   450 
   451 
   451