Ignore:
Timestamp:
Aug 16, 2007 10:11:44 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: continuing work to port the Symbian libraries to .DSO format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-simple/evsub_msg.c

    r1241 r1417  
    6262    char *endbuf = buf+size; 
    6363    int printed; 
     64    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
    6465 
    6566    copy_advance(p, hdr->name); 
     
    7172     
    7273    printed = pjsip_param_print_on(&hdr->other_param, p, endbuf-p, 
    73                                    &pjsip_TOKEN_SPEC,  
    74                                    &pjsip_TOKEN_SPEC, ';'); 
     74                                   &pc->pjsip_TOKEN_SPEC,  
     75                                   &pc->pjsip_TOKEN_SPEC, ';'); 
    7576    if (printed < 0) 
    7677        return printed; 
     
    160161    char *endbuf = buf+size; 
    161162    int printed; 
     163    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
    162164 
    163165    copy_advance(p, hdr->name); 
     
    181183     
    182184    printed = pjsip_param_print_on( &hdr->other_param, p, endbuf-p,  
    183                                     &pjsip_TOKEN_SPEC, 
    184                                     &pjsip_TOKEN_SPEC, 
     185                                    &pc->pjsip_TOKEN_SPEC, 
     186                                    &pc->pjsip_TOKEN_SPEC, 
    185187                                    ';'); 
    186188    if (printed < 0) 
     
    223225    pjsip_event_hdr *hdr = pjsip_event_hdr_create(ctx->pool); 
    224226    const pj_str_t id_param = { "id", 2 }; 
    225  
    226     pj_scan_get(ctx->scanner, &pjsip_TOKEN_SPEC, &hdr->event_type); 
     227    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
     228 
     229    pj_scan_get(ctx->scanner, &pc->pjsip_TOKEN_SPEC, &hdr->event_type); 
    227230 
    228231    while (*ctx->scanner->curptr == ';') { 
     
    254257                   expires = { "expires", 7 }, 
    255258                   retry_after = { "retry-after", 11 }; 
    256     pj_scan_get(ctx->scanner, &pjsip_TOKEN_SPEC, &hdr->sub_state); 
     259    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
     260 
     261    pj_scan_get(ctx->scanner, &pc->pjsip_TOKEN_SPEC, &hdr->sub_state); 
    257262 
    258263    while (*ctx->scanner->curptr == ';') { 
Note: See TracChangeset for help on using the changeset viewer.