<p>In modules/sipmsgops/sipmsgops.c:</p>
<pre style='color:#555'>&gt; +        if ((hdrs_len+2&lt;=msg-&gt;len) &amp;&amp; (strncmp(CRLF,msg-&gt;unparsed,CRLF_LEN)==0) )
&gt; +            body.s = msg-&gt;unparsed + CRLF_LEN;
&gt; +        else if ( (hdrs_len+1&lt;=msg-&gt;len) &amp;&amp;
&gt; +                (*(msg-&gt;unparsed)==&#39;\n&#39; || *(msg-&gt;unparsed)==&#39;\r&#39; ) )
&gt; +            body.s = msg-&gt;unparsed + 1;
&gt; +        else {
&gt; +            /* no body */
&gt; +            body.s = NULL;
&gt; +            body.len = 0;
&gt; +        }
&gt; +
&gt; +        /* determine the length of the body */
&gt; +        body.len = msg-&gt;buf + msg-&gt;len - body.s;
&gt; +
&gt; +        if (get_content_length(msg) != body.len) {
&gt; +            snprintf(reason, MAX_REASON-1, &quot;invalid body - content length %ld different then &quot;
</pre>
<p>different *than</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br>Reply to this email directly or <a href="https://github.com/OpenSIPS/opensips/pull/294/files#r16042525">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/5479561__eyJzY29wZSI6Ik5ld3NpZXM6QmVhY29uIiwiZXhwaXJlcyI6MTcyMzM2NTc3NCwiZGF0YSI6eyJpZCI6MzkzMTY3NDd9fQ==--bf87eda7749a04ee6d978dca2cc4fce0d992f89c.gif" width="1" /></p>