- Timestamp:
- Apr 28, 2007 2:30:08 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.5-stable/pjsip/src/test-pjsip/msg_test.c
r1081 r1218 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 \r\n"80 "Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1;param=a:b\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 178 185 pj_get_timestamp(&t2); 179 186 pj_sub_timestamp(&t2, &t1); … … 554 561 pjsip_cseq_hdr *cseq; 555 562 pjsip_msg *msg = pjsip_msg_create(pool, PJSIP_RESPONSE_MSG); 563 pjsip_param *param; 556 564 pjsip_msg_body *body; 557 565 … … 560 568 msg->line.status.reason = pj_str("OK"); 561 569 562 //"Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1 \r\n"570 //"Via: SIP/2.0/SCTP server10.biloxi.com;branch=z9hG4bKnashds8;rport;received=192.0.2.1;param=a:b\r\n" 563 571 via = pjsip_via_hdr_create(pool); 564 572 pjsip_msg_add_hdr(msg, (pjsip_hdr*)via); … … 568 576 via->rport_param = 0; 569 577 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); 570 583 571 584 //"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.