mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
synchronized trunk
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// HTTPClientSession.h
|
||||
//
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPClientSession.h#5 $
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPClientSession.h#6 $
|
||||
//
|
||||
// Library: Net
|
||||
// Package: HTTPClient
|
||||
@@ -214,6 +214,9 @@ private:
|
||||
bool _expectResponseBody;
|
||||
std::ostream* _pRequestStream;
|
||||
std::istream* _pResponseStream;
|
||||
|
||||
HTTPClientSession(const HTTPClientSession&);
|
||||
HTTPClientSession& operator = (const HTTPClientSession&);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// HTTPRequest.h
|
||||
//
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPRequest.h#2 $
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPRequest.h#3 $
|
||||
//
|
||||
// Library: Net
|
||||
// Package: HTTP
|
||||
@@ -152,6 +152,9 @@ private:
|
||||
|
||||
std::string _method;
|
||||
std::string _uri;
|
||||
|
||||
HTTPRequest(const HTTPRequest&);
|
||||
HTTPRequest& operator = (const HTTPRequest&);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// HTTPResponse.h
|
||||
//
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPResponse.h#2 $
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/HTTPResponse.h#3 $
|
||||
//
|
||||
// Library: Net
|
||||
// Package: HTTP
|
||||
@@ -244,6 +244,9 @@ private:
|
||||
|
||||
HTTPStatus _status;
|
||||
std::string _reason;
|
||||
|
||||
HTTPResponse(const HTTPResponse&);
|
||||
HTTPResponse& operator = (const HTTPResponse&);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// StringPartSource.h
|
||||
//
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/StringPartSource.h#2 $
|
||||
// $Id: //poco/Main/Net/include/Poco/Net/StringPartSource.h#3 $
|
||||
//
|
||||
// Library: Net
|
||||
// Package: Messages
|
||||
@@ -78,6 +78,9 @@ public:
|
||||
private:
|
||||
std::istringstream _istr;
|
||||
std::string _filename;
|
||||
|
||||
StringPartSource(const StringPartSource&);
|
||||
StringPartSource& operator = (const StringPartSource&);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user