mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
25 lines
478 B
C++
25 lines
478 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
namespace ripple {
|
|
namespace HTTP {
|
|
|
|
Session::Session ()
|
|
: headersComplete (false)
|
|
, tag (nullptr)
|
|
{
|
|
content.reserve (1000);
|
|
}
|
|
|
|
ScopedStream Session::operator<< (
|
|
std::ostream& manip (std::ostream&))
|
|
{
|
|
return ScopedStream (*this, manip);
|
|
}
|
|
|
|
}
|
|
}
|