コード例 #1
0
 bool end(const BufferT& dataBuffer)
 {
   return this->end(dataBuffer.data(), dataBuffer.size());
 }
コード例 #2
0
	void handle_write(const BufferT &buffer, HandlerT &handler)
	{
		handler(std::error_code(), buffer.size());
	}
コード例 #3
0
 bool end(const BufferT& dataBuffer, const header_block& trailers = {})
 {
   return this->end(dataBuffer.data(), dataBuffer.size(), trailers);
 }
コード例 #4
0
ファイル: buffer.hpp プロジェクト: tablacus/Avestan
		BufferT(const BufferT& rhs) throw() : m_length(0), m_capacity(0)
		{
			append(rhs, rhs.size());
		}