Ignore:
Timestamp:
Jul 18, 2006 2:39:40 PM (18 years ago)
Author:
bennylp
Message:

Small improvements: (1) pjsua now responds to incoming OPTIONS request, which means that some modules (evsub, invite) need to register their capabilities to the endpoint, (2) added command in pjsua to send arbitrary request

File:
1 edited

Legend:

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

    r576 r612  
    13451345        const pj_str_t reason = { "No session found", 16}; 
    13461346 
    1347         PJ_LOG(4,(tsx->obj_name, "Incoming request was unhandled by " 
    1348                                  "dialog usages, sending 500 response")); 
     1347        PJ_LOG(4,(tsx->obj_name, "%s was unhandled by " 
     1348                                 "dialog usages, sending 500 response", 
     1349                                 pjsip_rx_data_get_info(rdata))); 
    13491350 
    13501351        status = pjsip_dlg_create_response(dlg, rdata, 500, &reason, &tdata); 
     
    14581459    } 
    14591460 
     1461    /* Unhandled response does not necessarily mean error because 
     1462       dialog usages may choose to process the transaction state instead. 
    14601463    if (i==dlg->usage_cnt) { 
    1461         PJ_LOG(4,(dlg->obj_name, "%s is unhandled by dialog usages", 
     1464        PJ_LOG(4,(dlg->obj_name, "%s was not claimed by any dialog usages", 
    14621465                  pjsip_rx_data_get_info(rdata))); 
    14631466    } 
     1467    */ 
    14641468 
    14651469    /* Unlock dialog and dec session, may destroy dialog. */ 
Note: See TracChangeset for help on using the changeset viewer.