Ignore:
Timestamp:
Apr 11, 2012 10:01:00 AM (12 years ago)
Author:
bennylp
Message:

Re #1474: merged r4031-r4037

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk

  • pjproject/trunk/pjsip/include/pjsip/sip_config.h

    r3999 r4038  
    428428 
    429429/** 
    430  * Idle timeout interval to be applied to transports with no usage 
    431  * before the transport is destroyed. Value is in seconds. 
     430 * Idle timeout interval to be applied to outgoing transports (i.e. client 
     431 * side) with no usage before the transport is destroyed. Value is in 
     432 * seconds. 
    432433 * 
    433434 * Default: 30 
     
    435436#ifndef PJSIP_TRANSPORT_IDLE_TIME 
    436437#   define PJSIP_TRANSPORT_IDLE_TIME    30 
     438#endif 
     439 
     440 
     441/** 
     442 * Idle timeout interval to be applied to incoming transports (i.e. server 
     443 * side) with no usage before the transport is destroyed. Server typically 
     444 * should let client close the connection, hence set this interval to a large 
     445 * value. Value is in seconds. 
     446 * 
     447 * Default: 600 
     448 */ 
     449#ifndef PJSIP_TRANSPORT_SERVER_IDLE_TIME 
     450#   define PJSIP_TRANSPORT_SERVER_IDLE_TIME     600 
    437451#endif 
    438452 
Note: See TracChangeset for help on using the changeset viewer.