Searched refs:cseq (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_dialog_ui.c46 uint32_t maxforward, int cseq)
89 if (cseq < 0) {
93 cseq = ++_dialog->sip_dlg_local_cseq;
95 if (sip_add_cseq(sip_msg, method, cseq) != 0) {
128 uint32_t maxforward, int cseq)
133 sent_by_port, via_param, maxforward, cseq);
466 * Return the dialog local cseq
472 uint32_t cseq; local
483 cseq = _dialog->sip_dlg_local_cseq;
485 return (cseq);
44 sip_create_dialog_req(sip_method_t method, sip_dialog_t dialog, char *transport, char *sent_by, int sent_by_port, char *via_param, uint32_t maxforward, int cseq) argument
126 sip_create_dialog_req_nocontact(sip_method_t method, sip_dialog_t dialog, char *transport, char *sent_by, int sent_by_port, char *via_param, uint32_t maxforward, int cseq) argument
495 uint32_t cseq; local
[all...]
H A Dsip_gids.c199 int cseq; local
230 cseq = sip_get_callseq_num(_sip_msg, NULL);
231 if (to == NULL || from == NULL || callid == NULL || cseq == -1)
255 _sasl_MD5Update(&ctx, (uchar_t *)&cseq, sizeof (int));
271 MD5Update(&ctx, (uchar_t *)&cseq, sizeof (int));
H A Dsip_add_hdrs.c1062 sip_add_rack(sip_msg_t sip_msg, int resp_num, int cseq, sip_method_t method) argument
1069 if (sip_msg == NULL || resp_num <= 0 || cseq < 0 || method <= 0 ||
1083 sip_num_of_digits(cseq) + SIP_SPACE_LEN +
1093 "%s %c %d %d %s%s", hdr_name, SIP_HCOLON, resp_num, cseq,
1305 sip_add_cseq(sip_msg_t sip_msg, sip_method_t method, uint32_t cseq) argument
1309 if (sip_msg == NULL || (int)cseq < 0 || method == 0 ||
1313 r = sip_add_intstr_to_msg(sip_msg, SIP_CSEQ, cseq,
H A Dsip_msg.h169 sip_cseq_value_t cseq; member in union:sip_hdr_value::__anon3967
233 #define cseq_num hdr_value.cseq.num
234 #define cseq_method hdr_value.cseq.method
H A Dsip_xaction.c73 int cseq; local
83 cseq = sip_get_callseq_num((sip_msg_t)msg, &error);
84 if (cseq < 0 || error != 0)
99 (char *)&cseq, sizeof (int),
H A Dsip_dialog.c610 int cseq; local
664 ((cseq = sip_get_callseq_num((sip_msg_t)sip_msg, NULL)) == -1) ||
736 dialog->sip_dlg_local_cseq = cseq;
738 dialog->sip_dlg_remote_cseq = cseq;
1443 uint32_t cseq; local
1446 cseq = sip_get_callseq_num((sip_msg_t)sip_msg, &error);
1468 SIP_CSEQ_LT(cseq, _dialog->sip_dlg_remote_cseq)) {
1492 _dialog->sip_dlg_remote_cseq = cseq;

Completed in 88 milliseconds