Lines Matching refs:_sip_request

589 	_sip_msg_t	*_sip_request;
600 _sip_request = (_sip_msg_t *)sip_request;
602 (void) pthread_mutex_lock(&_sip_request->sip_msg_mutex);
613 if (_sip_find_and_copy_all_header(_sip_request, new_msg, SIP_VIA) != 0)
619 if (_sip_find_and_copy_header(_sip_request, new_msg, SIP_FROM,
628 if (_sip_find_and_copy_header(_sip_request, new_msg, SIP_TO,
653 if (_sip_find_and_copy_header(_sip_request, new_msg,
664 if (_sip_find_and_copy_header(_sip_request, new_msg, SIP_CALL_ID, NULL,
671 if (_sip_find_and_copy_header(_sip_request, new_msg, SIP_CSEQ, NULL,
678 if (sip_search_for_header(_sip_request, SIP_RECORD_ROUTE, NULL) !=
680 if (_sip_find_and_copy_all_header(_sip_request, new_msg,
691 (void) pthread_mutex_unlock(&_sip_request->sip_msg_mutex);
695 (void) pthread_mutex_unlock(&_sip_request->sip_msg_mutex);
897 _sip_msg_t *_sip_request;
904 _sip_request = (_sip_msg_t *)sip_request;
905 (void) pthread_mutex_lock(&_sip_request->sip_msg_mutex);
906 if (_sip_request->sip_msg_cannot_be_modified) {
907 (void) pthread_mutex_unlock(&_sip_request->sip_msg_mutex);
917 (void) pthread_mutex_unlock(&_sip_request->sip_msg_mutex);
920 new_header->sip_hdr_sipmsg = _sip_request;
926 new_header->sip_hdr_next = _sip_request->sip_msg_start_line;
927 _sip_request->sip_msg_start_line = new_header;
928 _sip_request->sip_msg_len += header_size;
929 (void) sip_parse_first_line(_sip_request->sip_msg_start_line,
930 &_sip_request->sip_msg_req_res);
931 if (_sip_request->sip_msg_buf != NULL)
932 _sip_request->sip_msg_modified = B_TRUE;
933 (void) pthread_mutex_unlock(&_sip_request->sip_msg_mutex);