b0VIM 7.4      a 4SP w[  emeric                                  nas                                     ~emeric/MesProgs/lms/remote/server/Connection.hpp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            utf-8 3210    #"! U                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 tp           N                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ad         N                     `  _  2  1                      W                X                Y  J  I  ?            Q  P  /      
  
  
  |
  Y
  X
  <
  ;
  
  	
  
  	  	  	  	  w	  v	  =	  :	  9	  8	  "	  	  	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #endif // HTTP_CONNECTION_HPP  } // namespace http } // namespace server   }; 		std::array<unsigned char, Header::size>	_headerBuffer;  //		reply reply_; 		/// The reply to be sent back to the client.  //		request_parser request_parser_; 		/// The parser for the incoming request.  //		request request_; 		/// The incoming request.  		// TODO use streambuffers  		RequestHandler& _RequestHandler; 		/// The handler used to process the incoming requests.  		ConnectionManager& _ConnectionManager; 		/// The manager for this connection.  		boost::asio::ip::tcp::socket _socket; 		/// Socket for the connection.  		void handleWrite(const boost::system::error_code& e); 		/// Handle completion of a write operation.  				std::size_t bytes_transferred); 		void handleRead(const boost::system::error_code& e, 		/// Handle completion of a read operation. 	private:  		void stop(); 		/// Stop all asynchronous operations associated with the connection.  		void start(); 		/// Start the first asynchronous operation for the connection.  		boost::asio::ip::tcp::socket& socket();  				ConnectionManager& manager, RequestHandler& handler); 		Connection(boost::asio::io_service& io_service, 		/// Construct a connection with the given io_service.  		typedef std::shared_ptr<connection> pointer;  	public: { class Connection : public boost::enable_shared_from_this<Connection>, boost::noncopyable /// Represents a single connection from a client.  class ConnectionManager;  namespace server { namespace http {  #include "request_parser.hpp" #include "RequestHandler.hpp" #include "request.hpp" #include "reply.hpp"  #include <boost/enable_shared_from_this.hpp>  #include <boost/noncopyable.hpp> #include <boost/asio.hpp>  #include <array.hpp> #include <memory>  #define REMOTE_CONNECTION_HPP #ifndef REMOTE_CONNECTION_HPP 