Ignore:
Timestamp:
Jan 10, 2006 1:31:40 PM (18 years ago)
Author:
bennylp
Message:

Renamed pjsip_url to pjsip_sip_uri

File:
1 edited

Legend:

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

    r82 r119  
    106106 * @param pname_unres   Specification of allowed characters in pname. 
    107107 * @param pvalue_unres  Specification of allowed characters in pvalue. 
    108  * @param sep           Separator character (either ';' or ','). 
     108 * @param sep           Separator character (either ';', ',', or '?'). 
     109 *                      When separator is set to '?', this function will 
     110 *                      automatically adjust the separator character to 
     111 *                      '&' after the first parameter is printed. 
    109112 * 
    110113 * @return              The number of bytes printed, or -1 on errr. 
     
    222225 * SIP and SIPS URL scheme. 
    223226 */ 
    224 typedef struct pjsip_url 
     227typedef struct pjsip_sip_uri 
    225228{ 
    226229    pjsip_uri_vptr *vptr;               /**< Pointer to virtual function table.*/ 
     
    237240    pjsip_param     other_param;        /**< Other parameters grouped together. */ 
    238241    pjsip_param     header_param;       /**< Optional header parameter. */ 
    239 } pjsip_url; 
     242} pjsip_sip_uri; 
    240243 
    241244 
     
    330333 * @return SIP URL. 
    331334 */ 
    332 PJ_DECL(pjsip_url*) pjsip_url_create( pj_pool_t *pool, int secure ); 
     335PJ_DECL(pjsip_sip_uri*) pjsip_url_create( pj_pool_t *pool, int secure ); 
    333336 
    334337/** 
     
    337340 * @return          SIPS URL. 
    338341 */ 
    339 PJ_DECL(pjsip_url*) pjsips_url_create( pj_pool_t *pool ); 
     342PJ_DECL(pjsip_sip_uri*) pjsips_url_create( pj_pool_t *pool ); 
    340343 
    341344/** 
     
    343346 * @param url       The URL. 
    344347 */ 
    345 PJ_DECL(void)  pjsip_url_init(pjsip_url *url, int secure); 
     348PJ_DECL(void)  pjsip_url_init(pjsip_sip_uri *url, int secure); 
    346349 
    347350/** 
     
    351354 * @param rhs       The source URL. 
    352355 */ 
    353 PJ_DECL(void)  pjsip_url_assign(pj_pool_t *pool, pjsip_url *url, const pjsip_url *rhs); 
     356PJ_DECL(void)  pjsip_url_assign(pj_pool_t *pool, pjsip_sip_uri *url,  
     357                                const pjsip_sip_uri *rhs); 
    354358 
    355359/** 
Note: See TracChangeset for help on using the changeset viewer.