Ignore:
Timestamp:
Nov 23, 2005 8:56:30 PM (18 years ago)
Author:
bennylp
Message:

Added tel: uri and user-defined uri parser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_auth_msg.c

    r65 r82  
    1919#include <pjsip/sip_auth_msg.h> 
    2020#include <pjsip/sip_auth_parser.h> 
     21#include <pjsip/sip_parser.h> 
    2122#include <pj/pool.h> 
    2223#include <pj/list.h> 
     
    8081    copy_advance_pair(buf, ", nc=", 5, cred->nc); 
    8182     
    82     printed = pjsip_param_print_on(&cred->other_param, buf, endbuf-buf, ','); 
     83    printed = pjsip_param_print_on(&cred->other_param, buf, endbuf-buf,  
     84                                   &pjsip_PARAM_CHAR_SPEC,  
     85                                   &pjsip_PARAM_CHAR_SPEC, ','); 
    8386    if (printed < 0) 
    8487        return -1; 
     
    232235    copy_advance_pair_quote_cond(buf, ",qop=", 5, chal->qop, '"', '"'); 
    233236     
    234     printed = pjsip_param_print_on(&chal->other_param, buf, endbuf-buf, ','); 
     237    printed = pjsip_param_print_on(&chal->other_param, buf, endbuf-buf,  
     238                                   &pjsip_PARAM_CHAR_SPEC,  
     239                                   &pjsip_PARAM_CHAR_SPEC, ','); 
    235240    if (printed < 0) 
    236241        return -1; 
Note: See TracChangeset for help on using the changeset viewer.