Library: Net
Package: HTTPServer
Header: Poco/Net/HTTPServerRequestImpl.h
This subclass of HTTPServerRequest is used for representing server-side HTTP requests.
A HTTPServerRequest is passed to the handleRequest() method of HTTPRequestHandler.
Direct Base Classes: HTTPServerRequest
All Base Classes: HTTPMessage, HTTPRequest, HTTPServerRequest, MessageHeader, NameValueCollection
Member Functions: clientAddress, detachSocket, expectContinue, response, serverAddress, serverParams, socket, stream
Inherited Functions: add, begin, clear, clientAddress, empty, end, erase, expectContinue, find, get, getChunkedTransferEncoding, getContentLength, getContentType, getCookies, getCredentials, getHost, getKeepAlive, getMethod, getTransferEncoding, getURI, getVersion, has, hasCredentials, operator =, operator [], quote, read, response, serverAddress, serverParams, set, setChunkedTransferEncoding, setContentLength, setContentType, setCookies, setCredentials, setHost, setKeepAlive, setMethod, setTransferEncoding, setURI, setVersion, size, splitElements, splitParameters, stream, swap, write
HTTPServerRequestImpl(
HTTPServerResponse & response,
HTTPServerSession & session,
HTTPServerParams * pParams
);
Creates the HTTPServerRequestImpl, using the given HTTPServerSession.
Destroys the HTTPServerRequestImpl.
const SocketAddress & clientAddress() const;
Returns the client's address.
StreamSocket detachSocket();
Returns the underlying socket after detaching it from the server session.
bool expectContinue() const;
Returns true if the client expects a 100 Continue response.
HTTPServerResponse & response() const;
Returns a reference to the associated response.
See also: Poco::Net::HTTPServerRequest::response()
const SocketAddress & serverAddress() const;
Returns the server's address.
const HTTPServerParams & serverParams() const;
Returns a reference to the server parameters.
StreamSocket & socket();
Returns a reference to the underlying socket.
std::istream & stream();
Returns the input stream for reading the request body.
The stream is valid until the HTTPServerRequestImpl object is destroyed.
See also: Poco::Net::HTTPServerRequest::stream()
static const std::string EXPECT;