Ignore:
Timestamp:
Apr 2, 2007 11:44:47 AM (17 years ago)
Author:
bennylp
Message:

Ticket #205: merged proxy functionalities from stable to trunk

File:
1 edited

Legend:

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

    r1079 r1127  
    10371037    /* Check arguments. */ 
    10381038    PJ_ASSERT_RETURN(pool && rdata && res_addr, PJ_EINVAL); 
     1039 
     1040    /* rdata must be a request message! */ 
     1041    PJ_ASSERT_RETURN(rdata->msg_info.msg->type == PJSIP_REQUEST_MSG, 
     1042                     PJ_EINVAL); 
    10391043 
    10401044    /* All requests must have "received" parameter. 
Note: See TracChangeset for help on using the changeset viewer.