websSetRequestWritten GoAhead WebServer API GoAhead EMF

Synopsis

Set the number of bytes written to the browser.

Prototype

 #include "webs.h"
 
 void websSetRequestWritten(webs_t wp, int bytes); 

Parameters

wp Web server connection handle.
bytes Number of bytes in page written to the browser.

Description

The websSetRequestWritten procedure defines the number of bytes that have been returned to the browser. This is used only for record keeping by background write handlers, including the default handler.

Return Value

None

Example

 websSetRequestWritten(wp,1024); 

Stability Classification

Stable.

See Also

websGetRequestBytes, websSetRequestBytes