Understood.  Thanks.<br /><br />On , Bogdan-Andrei Iancu &lt;bogdan@opensips.org&gt; wrote:<br />&gt; <br />&gt; <br />&gt;   <br />&gt;     <br />&gt;   <br />&gt;   <br />&gt;     Hi Duane,<br />&gt; <br />&gt;       <br />&gt; <br />&gt;       as sometime you may generate in-dialog requests, having a default<br />&gt;       Cseq to minimum is not a good idea :). On the other hand it is a<br />&gt;       risky gambling here.<br />&gt; <br />&gt;       <br />&gt; <br />&gt;       But as you said :<br />&gt; <br />&gt;       1) RFC does not enforce a start value for the cseq (neither the<br />&gt;       increment value)<br />&gt; <br />&gt;       2) if you do not want opensips to use default, simply push your<br />&gt;       own cseq via the &quot;headers&quot; param.<br />&gt; <br />&gt;       <br />&gt; <br />&gt;       Best regards,<br />&gt; <br />&gt;       Bogdan<br />&gt; <br />&gt;     <br />&gt;     Bogdan-Andrei Iancu<br />&gt; OpenSIPS Founder and Developer<br />&gt; http://www.opensips-solutions.com<br />&gt;     <br />&gt; <br />&gt;     On 08/16/2012 06:56 AM, Duane Larson wrote:<br />&gt;     <br />&gt;       <br />&gt; I&#39;m not sure if this is an issue or not.<br />&gt;       <br />&gt; When t_uac_dlg is not passed a &quot;CSeq&quot; header it goes ahead and<br />&gt;         sets the &quot;CSeq&quot; value to 10.  So if I send a REFER message you<br />&gt;         will see<br />&gt;       <br />&gt; REFER sip:x@192.168.88.13:3072<br />&gt;         SIP/2.0<br />&gt; <br />&gt;         Max-Forwards: 10<br />&gt; <br />&gt;         Record-Route: <br />&gt; <br />&gt;         Via: SIP/2.0/UDP 192.168.88.1;branch=z9hG4bKa4af.4c9709a4.0<br />&gt; <br />&gt;         To: sip:9016726924@irock.com<br />&gt; <br />&gt;         From: sip:x@ae.com&gt;;tag=13450882214706<br />&gt; <br />&gt;         CSeq: 10 REFER<br />&gt; <br />&gt;         Call-ID: 13450882214706<br />&gt; <br />&gt;         Content-Length: 0<br />&gt; <br />&gt;         User-Agent: OpenSIPS (1.8.0-dev0-tls (x86_64/linux))<br />&gt; <br />&gt;         Contact: <br />&gt; <br />&gt;         Refer-To: sip:x@x.com<br />&gt;       <br />&gt;  <br />&gt;       <br />&gt; For some reason my Snom phone isn&#39;t liking this and I&#39;ve<br />&gt;         informed them about this and hopefully they see it as a bug on<br />&gt;         their part.<br />&gt;       <br />&gt; <br />&gt;         The reason I am emailing is because I was wondering if there is<br />&gt;         an error in the mi.c code on the follow lines<br />&gt; <br />&gt;        <br />&gt; <br />&gt;        <br />&gt; <br />&gt;        <br />&gt; <br />&gt;       513  /* Fill in CSeq */<br />&gt; <br />&gt;         514  if (cseq!=-1)<br />&gt; <br />&gt;         515  dlg.loc_seq.value = cseq;<br />&gt; <br />&gt;         516  else<br />&gt; <br />&gt;         517  dlg.loc_seq.value = DEFAULT_CSEQ;<br />&gt; <br />&gt;         518  dlg.loc_seq.is_set = 1;<br />&gt; <br />&gt;        <br />&gt; <br />&gt;       I am not sure what DEFAULT_CSEQ is refering<br />&gt;         to but if I change this to be the value of &quot;1&quot; then the issue<br />&gt;         when &quot;CSeq&quot; isn&#39;t defined in t_uac_dlg generating a 10 as the<br />&gt;         value goes away.  Also I tested to be sure that when a value IS<br />&gt;         sent to t_uac_dlg that value is used instead of &quot;1&quot; and<br />&gt;         everything still worked.<br />&gt; <br />&gt;        <br />&gt; <br />&gt;       Shouldn&#39;t it be something like<br />&gt; <br />&gt;        <br />&gt; <br />&gt;       513 /* Fill in CSeq */<br />&gt; <br />&gt;         514 if (cseq!=-1)<br />&gt; <br />&gt;         515 dlg.loc_seq.value = cseq;<br />&gt; <br />&gt;         516 else<br />&gt; <br />&gt;         517 dlg.loc_seq.value = 1;<br />&gt; <br />&gt;         518 dlg.loc_seq.is_set = 1;<br />&gt; <br />&gt;        <br />&gt; <br />&gt;        <br />&gt; <br />&gt;       I wasn&#39;t sure if this was an error in the code or if there is<br />&gt;         a reason behind it being DEFAULT_CSEQ<br />&gt; <br />&gt;       <br />&gt; <br />&gt; _______________________________________________<br />&gt; Users mailing list<br />&gt; Users@lists.opensips.org<br />&gt; http://lists.opensips.org/cgi-bin/mailman/listinfo/users<br />&gt; <br />&gt;     <br />&gt;   <br />&gt; <br />&gt; <br />&gt;