Files
@ 10eea7ab77a5
Branch filter:
Location: libtransport.git/include/Swiften/Network/DummyConnectionServer.cpp - annotation
10eea7ab77a5
920 B
text/x-c++hdr
wrap incoming images in x:oob tag
b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 6d2f8c192761 6d2f8c192761 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 6d2f8c192761 b9d0590c67f8 0729d364ca25 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 b9d0590c67f8 | /*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <Swiften/Network/DummyConnectionServer.h>
#include <boost/bind.hpp>
#include <boost/system/system_error.hpp>
#include <boost/asio/placeholders.hpp>
#include <Swiften/EventLoop/EventLoop.h>
#include "Swiften/SwiftenCompat.h"
namespace Swift {
DummyConnectionServer::DummyConnectionServer(EventLoop* eventLoop) : eventLoop(eventLoop) {
}
void DummyConnectionServer::start() {
}
void DummyConnectionServer::stop() {
}
void DummyConnectionServer::acceptConnection(SWIFTEN_SHRPTR_NAMESPACE::shared_ptr<Swift::Connection> connection) {
eventLoop->postEvent(
boost::bind(boost::ref(onNewConnection), connection));
// connection->listen();
}
HostAddressPort DummyConnectionServer::getAddressPort() const {
return HostAddressPort();
}
}
|