Library: Net
Package: HTTP
Header: Poco/Net/HTTPChunkedStream.h
This is the streambuf class used for reading and writing HTTP message bodies in chunked transfer coding.
Direct Base Classes: HTTPBasicStreamBuf
All Base Classes: HTTPBasicStreamBuf
Member Functions: close, readFromDevice, writeToDevice
typedef HTTPBasicStreamBuf::openmode openmode;
HTTPChunkedStreamBuf(
    HTTPSession & session,
    openmode mode
);
void close();
 
 int readFromDevice(
    char * buffer,
    std::streamsize length
);
 
 int writeToDevice(
    const char * buffer,
    std::streamsize length
);