Changeset 3182


Ignore:
Timestamp:
May 19, 2010 6:07:40 AM (14 years ago)
Author:
bennylp
Message:

Fix #1071: Increase default maximum SIP packet size to 4000

Location:
pjproject/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/config.h

    r3066 r3182  
    386386 * flag is set. 
    387387 * 
    388  * Default: 2000 
     388 * Default: 4000 
    389389 */ 
    390390#ifndef PJ_LOG_MAX_SIZE 
    391 #  define PJ_LOG_MAX_SIZE           2000 
     391#  define PJ_LOG_MAX_SIZE           4000 
    392392#endif 
    393393 
  • pjproject/trunk/pjlib/include/pj/config_site_sample.h

    r3175 r3182  
    172172    #define PJSIP_SAFE_MODULE                   0 
    173173 
    174     /* Increase allowable packet size, just in case */ 
     174    /* Use large enough packet size */ 
    175175    #define PJSIP_MAX_PKT_LEN                   2000 
    176176 
     
    334334 
    335335    /* Increase allowable packet size, just in case */ 
    336     #define PJSIP_MAX_PKT_LEN                   2000 
     336    //#define PJSIP_MAX_PKT_LEN                 2000 
    337337 
    338338    /* 
  • pjproject/trunk/pjsip/include/pjsip/sip_config.h

    r3019 r3182  
    223223 */ 
    224224#ifndef PJSIP_MAX_PKT_LEN 
    225 #   define PJSIP_MAX_PKT_LEN            2000 
     225#   define PJSIP_MAX_PKT_LEN            4000 
    226226#endif 
    227227 
Note: See TracChangeset for help on using the changeset viewer.