Changeset 1220
- Timestamp:
- Apr 28, 2007 3:37:49 PM (18 years ago)
- Location:
- pjproject/branches/split-3rd-party/pjsip/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/split-3rd-party/pjsip/src/pjsip/sip_msg.c
r1217 r1220 1726 1726 copy_advance_pair(buf, ";received=", 10, hdr->recvd_param); 1727 1727 copy_advance_pair(buf, ";branch=", 8, hdr->branch_param); 1728 1729 /* Via's via-extension params should be printed with token spec 1730 * according to RFC 3261's generic-param production, but some 1731 * endpoint uses pname/pvalue production for these params, by 1732 * sending to us Via parameter containing ":". 1733 * 1734 * So for interoperability sake, lets allow ":" in Via param. 1735 1728 1736 1729 printed = pjsip_param_print_on(&hdr->other_param, buf, endbuf-buf, 1737 1730 &pjsip_TOKEN_SPEC, 1738 &pjsip_TOKEN_SPEC, ';'); 1739 */ 1740 printed = pjsip_param_print_on(&hdr->other_param, buf, endbuf-buf, 1741 &pjsip_PARAM_CHAR_SPEC, 1742 &pjsip_PARAM_CHAR_SPEC, ';'); 1743 1731 &pjsip_TOKEN_SPEC, ';'); 1744 1732 if (printed < 0) 1745 1733 return -1; -
pjproject/branches/split-3rd-party/pjsip/src/pjsip/sip_parser.c
r1217 r1220 1844 1844 pj_str_t pname, pvalue; 1845 1845 1846 /* Via's via-extension params should be printed with token spec1847 * according to RFC 3261's generic-param production, but some1848 * endpoint uses pname/pvalue production for these params, by1849 * sending to us Via parameter containing ":".1850 *1851 * So for interoperability sake, lets allow ":" in Via param.1852 1846 int_parse_param( scanner, pool, &pname, &pvalue); 1853 */1854 1855 int_parse_uri_param(scanner, pool, &pname, &pvalue);1856 1847 1857 1848 if (!parser_stricmp(pname, pjsip_BRANCH_STR) && pvalue.slen) { -
pjproject/branches/split-3rd-party/pjsip/src/test-pjsip/msg_test.c
r1217 r1220 78 78 /* Typical response message. */ 79 79 "SIP/2.0 200 OK\r\n" 80 "Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1 ;param=a:b\r\n"80 "Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1\r\n" 81 81 "Via: SIP/2.0/UDP bigbox3.site3.atlanta.com;branch=z9hG4bK77ef4c2312983.1;received=192.0.2.2\r\n" 82 82 "Via: SIP/2.0/UDP pc33.atlanta.com;branch=z9hG4bK776asdhds ;received=192.0.2.3\r\n" … … 176 176 } 177 177 } 178 if (!pj_list_empty(&err_list)) {179 PJ_LOG(3,(THIS_FILE, " Syntax error in line %d col %d",180 err_list.next->line, err_list.next->col));181 status = -11;182 goto on_return;183 }184 185 178 pj_get_timestamp(&t2); 186 179 pj_sub_timestamp(&t2, &t1); … … 561 554 pjsip_cseq_hdr *cseq; 562 555 pjsip_msg *msg = pjsip_msg_create(pool, PJSIP_RESPONSE_MSG); 563 pjsip_param *param;564 556 pjsip_msg_body *body; 565 557 … … 568 560 msg->line.status.reason = pj_str("OK"); 569 561 570 //"Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1 ;param=a:b\r\n"562 //"Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1\r\n" 571 563 via = pjsip_via_hdr_create(pool); 572 564 pjsip_msg_add_hdr(msg, (pjsip_hdr*)via); … … 576 568 via->rport_param = 0; 577 569 via->recvd_param = pj_str("192.0.2.1"); 578 579 param = pj_pool_zalloc(pool, sizeof(pjsip_param));580 param->name = pj_str("param");581 param->value = pj_str("a:b");582 pj_list_push_back(&via->other_param, param);583 570 584 571 //"Via: SIP/2.0/UDP bigbox3.site3.atlanta.com;branch=z9hG4bK77ef4c2312983.1;received=192.0.2.2\r\n"
Note: See TracChangeset
for help on using the changeset viewer.