From: Christian P. <cp...@us...> - 2005-01-17 00:18:54
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4586/include/pclasses/Net Modified Files: HTTPClient.h Log Message: Renamed some methods. Index: HTTPClient.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Net/HTTPClient.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- HTTPClient.h 14 Jan 2005 14:58:04 -0000 1.2 +++ HTTPClient.h 17 Jan 2005 00:18:44 -0000 1.3 @@ -107,6 +107,13 @@ class HTTPClient; +//! HTTP Response +/*! + Why is HTTPResponse a IODevice ? + HTTPResponse hides underlying protocol details such as + chunked-transfer-encoding from the client when reading a + response body. +*/ class HTTPResponse: public IO::IODevice { public: HTTPResponse(HTTPClient& client, const std::string& protoVer, @@ -138,6 +145,7 @@ bool _chunkedEncoding; }; +//! Hypertext-Transfer-Protocol client class class HTTPClient: public StreamSocket { public: HTTPClient(); |