diff options
Diffstat (limited to 'Swiften/Network/BOSHConnection.cpp')
| -rw-r--r-- | Swiften/Network/BOSHConnection.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Swiften/Network/BOSHConnection.cpp b/Swiften/Network/BOSHConnection.cpp index 377373d..23772eb 100644 --- a/Swiften/Network/BOSHConnection.cpp +++ b/Swiften/Network/BOSHConnection.cpp @@ -110,7 +110,7 @@ std::pair<SafeByteArray, size_t> BOSHConnection::createHTTPRequest(const SafeByt  			header << ":" << *boshURL.getPort();  	}  	header	<< "\r\n" -		/*<< "Accept-Encoding: deflate\r\n"*/ +		// << "Accept-Encoding: deflate\r\n"  			<< "Content-Type: text/xml; charset=utf-8\r\n"  			<< "Content-Length: " << size << "\r\n\r\n"; @@ -156,7 +156,7 @@ void BOSHConnection::startStream(const std::string& to, unsigned long long rid)  			<< " rid='" << rid << "'"  			<< " ver='1.6'"  			<< " wait='60'" /* FIXME: we probably want this configurable*/ -			/*<< " ack='0'" FIXME: support acks */ +			// << " ack='0'" FIXME: support acks   			<< " xml:lang='en'"  			<< " xmlns:xmpp='urn:xmpp:bosh'"  			<< " xmpp:version='1.0'" @@ -170,7 +170,7 @@ void BOSHConnection::startStream(const std::string& to, unsigned long long rid)  		header << ":" << *boshURL_.getPort();  	}  	header << "\r\n" -		/*<< "Accept-Encoding: deflate\r\n"*/ +		 // << "Accept-Encoding: deflate\r\n"  			<< "Content-Type: text/xml; charset=utf-8\r\n"  			<< "Content-Length: " << contentString.size() << "\r\n\r\n"  			<< contentString; @@ -208,7 +208,7 @@ void BOSHConnection::handleDataRead(boost::shared_ptr<SafeByteArray> data) {  			waitingForStartResponse_ = false;  			sid_ = parser.getBody()->attributes.getAttribute("sid");  			std::string requestsString = parser.getBody()->attributes.getAttribute("requests"); -			int requests = 2; +			size_t requests = 2;  			if (!requestsString.empty()) {  				try {  					requests = boost::lexical_cast<size_t>(requestsString); | 
 Swift
 Swift