/* * Copyright (c) 2010-2011 Thilo Cestonaro * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include "Swiften/Network/Connection.h" #include "Swiften/Network/HostAddressPort.h" namespace boost { class thread; namespace system { class error_code; } } namespace Swift { class ConnectionFactory; class HTTPConnectProxiedConnection : public Connection, public boost::enable_shared_from_this { public: typedef boost::shared_ptr ref; ~HTTPConnectProxiedConnection(); static ref create(ConnectionFactory* connectionFactory, HostAddressPort proxy) { return ref(new HTTPConnectProxiedConnection(connectionFactory, proxy)); } virtual void listen(); virtual void connect(const HostAddressPort& address); virtual void disconnect(); virtual void write(const ByteArray& data); virtual HostAddressPort getLocalAddress() const; private: HTTPConnectProxiedConnection(ConnectionFactory* connectionFactory, HostAddressPort proxy); void handleConnectionConnectFinished(bool error); void handleDataRead(const ByteArray& data); void handleDisconnected(const boost::optional& error); private: bool connected_; ConnectionFactory* connectionFactory_; HostAddressPort proxy_; HostAddressPort server_; boost::shared_ptr connection_; }; }