Ignore:
Timestamp:
Aug 4, 2009 2:36:17 PM (15 years ago)
Author:
nanang
Message:

Ticket #930:

  • Changed semantic of pjsua_acc_config.contact_params, it is now used for specifying Contact header parameters (it was used for specifying Contact URI parameters).
  • Added a new field pjsua_acc_config.contact_uri_params, for specifying Contact URI parameters.
  • Added fields pjsua_acc_config.contact_params and pjsua_acc_config.contact_uri_params into python pjsua.
  • Updated/added option in pjsua app to specify Contact header parameters and Contact URI parameters.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r2824 r2852  
    16671667 
    16681668    /** 
    1669      * Additional URI parameters that will be appended in the Contact header 
     1669     * Additional parameters that will be appended in the Contact header 
    16701670     * for this account. This will affect the Contact header in all SIP  
    16711671     * messages sent on behalf of this account, including but not limited to 
     
    16771677     */ 
    16781678    pj_str_t        contact_params; 
     1679 
     1680    /** 
     1681     * Additional URI parameters that will be appended in the Contact URI 
     1682     * for this account. This will affect the Contact URI in all SIP 
     1683     * messages sent on behalf of this account, including but not limited to 
     1684     * REGISTER, INVITE, and SUBCRIBE requests or responses. 
     1685     * 
     1686     * The parameters should be preceeded by semicolon, and all strings must 
     1687     * be properly escaped. Example: 
     1688     *   ";my-param=X;another-param=Hi%20there" 
     1689     */ 
     1690    pj_str_t        contact_uri_params; 
    16791691 
    16801692    /** 
Note: See TracChangeset for help on using the changeset viewer.