diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-21 11:24:26 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-21 11:30:57 (GMT) |
commit | 052f685338462a8c0c6d9785864e7549290d7037 (patch) | |
tree | f076b9981c62dc6913badf675c22caf6cbfcd874 /Slimber/Server.h | |
parent | 06a69020da6ffb527bb2a31f1da2158df2a4d3de (diff) | |
download | swift-052f685338462a8c0c6d9785864e7549290d7037.zip swift-052f685338462a8c0c6d9785864e7549290d7037.tar.bz2 |
Show list of connected users.
Diffstat (limited to 'Slimber/Server.h')
-rw-r--r-- | Slimber/Server.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Slimber/Server.h b/Slimber/Server.h index 5ce9e31..d8b6c6c 100644 --- a/Slimber/Server.h +++ b/Slimber/Server.h @@ -24,7 +24,7 @@ namespace Swift { class Server { public: - Server(int clientConnectionPort, int linkLocalConnectionPort, boost::shared_ptr<DNSSDService> dnsSDService); + Server(int clientConnectionPort, int linkLocalConnectionPort, boost::shared_ptr<LinkLocalRoster>, boost::shared_ptr<DNSSDService> dnsSDService); boost::signal<void (bool)> onSelfConnected; @@ -64,8 +64,8 @@ namespace Swift { bool rosterRequested_; int clientConnectionPort_; int linkLocalConnectionPort_; - boost::shared_ptr<DNSSDService> dnsSDService_; boost::shared_ptr<LinkLocalRoster> linkLocalRoster_; + boost::shared_ptr<DNSSDService> dnsSDService_; boost::shared_ptr<BoostConnectionServer> serverFromClientConnectionServer_; boost::shared_ptr<ServerFromClientSession> serverFromClientSession_; boost::shared_ptr<BoostConnectionServer> serverFromNetworkConnectionServer_; |