Changeset 4285 for pjproject


Ignore:
Timestamp:
Oct 19, 2012 4:23:57 AM (12 years ago)
Author:
nanang
Message:

Re #1569: Fixed missing default value setting for pjsip_cfg()->allow_tx_hash_in_uri.

Location:
pjproject/trunk/pjsip
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_config.h

    r4267 r4285  
    7474         * Specify port number should be allowed to appear in To and From 
    7575         * header. Note that RFC 3261 disallow this, see Table 1 in section 
    76          * 19.1.1 of the RFC. Default is PJSIP_ALLOW_PORT_IN_FROMTO_HDR. 
     76         * 19.1.1 of the RFC. 
     77         * 
     78         * Default is PJSIP_ALLOW_PORT_IN_FROMTO_HDR. 
    7779         */ 
    7880        pj_bool_t allow_port_in_fromto_hdr; 
     
    8991        /** 
    9092         * Allow hash character ('#') to appear in outgoing URIs. See 
    91          * https://trac.pjsip.org/repos/ticket/1569 
     93         * https://trac.pjsip.org/repos/ticket/1569. 
     94         * 
     95         * Default is PJ_FALSE. 
    9296         */ 
    9397        pj_bool_t allow_tx_hash_in_uri; 
     
    9599        /** 
    96100         * Disable rport in request. 
     101         * 
     102         * Default is PJ_FALSE. 
    97103         */ 
    98104        pj_bool_t disable_rport; 
     
    100106        /** 
    101107         * Disable automatic switching from UDP to TCP if outgoing request 
    102          * is greater than 1300 bytes. See PJSIP_DONT_SWITCH_TO_TCP. 
     108         * is greater than 1300 bytes. 
     109         * 
     110         * Default is PJSIP_DONT_SWITCH_TO_TCP. 
    103111         */ 
    104112        pj_bool_t disable_tcp_switch; 
  • pjproject/trunk/pjsip/src/pjsip/sip_config.c

    r4267 r4285  
    2929       PJSIP_ACCEPT_REPLACE_IN_EARLY_STATE, 
    3030       0, 
     31       0, 
    3132       PJSIP_DONT_SWITCH_TO_TCP 
    3233    }, 
Note: See TracChangeset for help on using the changeset viewer.