From: Vasiljevic Z. <zv...@ar...> - 2010-05-04 15:51:04
|
Hi all! Tcl_WideInt Ns_ConnFlushHeaders(Ns_Conn *conn, int status) { Conn *connPtr = (Conn *) conn; Ns_ConnSetResponseStatus(conn, status); Ns_ConnWriteData(conn, NULL, 0, 0); return connPtr->nContentSent; } This function is set as deprecated. It returns number of bytes sent. I cannot see that connPtr->nContentSent is exposed from outside so how am I to obtain the original Ns_ConnFlushHeaders functionality w/o accessing internal connection state? Cheers Zoran |