}
-/* wrapper arrounf PutContRange */
+/** wrapper arrounf PutContRange */
void
httpHeaderAddContRange(HttpHeader * hdr, HttpHdrRangeSpec spec, int64_t ent_len)
{
}
-/*
+/**
* return true if a given directive is found in at least one of
* the "connection" header-fields note: if HDR_PROXY_CONNECTION is
* present we ignore HDR_CONNECTION.
if (eof) // already reached EOF
return COMPLETE_NONPERSISTENT_MSG;
- /* In chunked responce we do not know the content length but we are absolutelly
+ /** \par
+ * In chunked response we do not know the content length but we are absolutely
* sure about the end of response, so we are calling the statusIfComplete to
* decide if we can be persistant
*/
if (clen < 0)
return INCOMPLETE_MSG;
- /* If the body size is known, we must wait until we've gotten all of it. */
+ /** \par
+ * If the body size is known, we must wait until we've gotten all of it. */
if (clen > 0) {
// old technique:
// if (entry->mem_obj->endOffset() < vrep->content_length + vrep->hdr_sz)
return INCOMPLETE_MSG;
}
- /* If there is no message body or we got it all, we can be persistent */
+ /** \par
+ * If there is no message body or we got it all, we can be persistent */
return statusIfComplete();
}