- Timestamp:
- Jun 25, 2009 11:29:49 AM (15 years ago)
- Location:
- pjproject/branches/1.0/pjsip/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.0/pjsip/src/pjsip/sip_parser.c
r2538 r2802 1589 1589 1590 1590 pj_bzero(status_line, sizeof(*status_line)); 1591 pj_scan_init(&scanner, buf, size, 0, &on_syntax_error); 1591 pj_scan_init(&scanner, buf, size, PJ_SCAN_AUTOSKIP_WS_HEADER, 1592 &on_syntax_error); 1592 1593 1593 1594 PJ_TRY { -
pjproject/branches/1.0/pjsip/src/pjsua-lib/pjsua_call.c
r2795 r2802 3404 3404 body = msg->body; 3405 3405 if (!body) { 3406 PJ_LOG( 4,(THIS_FILE,3406 PJ_LOG(2,(THIS_FILE, 3407 3407 "Warning: received NOTIFY without message body")); 3408 3408 return; … … 3413 3413 pj_stricmp2(&body->content_type.subtype, "sipfrag") != 0) 3414 3414 { 3415 PJ_LOG( 4,(THIS_FILE,3415 PJ_LOG(2,(THIS_FILE, 3416 3416 "Warning: received NOTIFY with non message/sipfrag " 3417 3417 "content")); … … 3423 3423 &status_line); 3424 3424 if (status != PJ_SUCCESS) { 3425 PJ_LOG( 4,(THIS_FILE,3425 PJ_LOG(2,(THIS_FILE, 3426 3426 "Warning: received NOTIFY with invalid " 3427 3427 "message/sipfrag content"));
Note: See TracChangeset
for help on using the changeset viewer.