From 83791d091430a0b2fa534c104823f91a7587d64e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Remko=20Tron=C3=A7on?= Date: Mon, 3 Aug 2009 11:57:19 +0200 Subject: Slimber: Remove debug output. diff --git a/Slimber/MainController.cpp b/Slimber/MainController.cpp index 9cd8c4d..baf032c 100644 --- a/Slimber/MainController.cpp +++ b/Slimber/MainController.cpp @@ -80,7 +80,11 @@ void MainController::handleSelfConnected(bool b) { void MainController::handleServicesChanged() { std::vector names; foreach(const LinkLocalService& service, linkLocalServiceBrowser->getServices()) { - names.push_back(service.getDescription()); + String description = service.getDescription(); + if (description != service.getName()) { + description += " (" + service.getName() + ")"; + } + names.push_back(description); } menuletController->setUserNames(names); } diff --git a/Slimber/Server.cpp b/Slimber/Server.cpp index a944ab9..e07fb41 100644 --- a/Slimber/Server.cpp +++ b/Slimber/Server.cpp @@ -146,8 +146,8 @@ void Server::handleNewClientConnection(boost::shared_ptr connection) serverFromClientSession->onSessionFinished.connect( boost::bind(&Server::handleSessionFinished, this, serverFromClientSession)); - tracers.push_back(boost::shared_ptr( - new SessionTracer(serverFromClientSession))); + //tracers.push_back(boost::shared_ptr( + // new SessionTracer(serverFromClientSession))); serverFromClientSession->startSession(); } @@ -275,7 +275,7 @@ void Server::handleNewLinkLocalConnection(boost::shared_ptr connecti } void Server::handleLinkLocalSessionFinished(boost::shared_ptr session) { - std::cout << "Link local session from " << session->getRemoteJID() << " ended" << std::endl; + //std::cout << "Link local session from " << session->getRemoteJID() << " ended" << std::endl; linkLocalSessions.erase( std::remove(linkLocalSessions.begin(), linkLocalSessions.end(), session), linkLocalSessions.end()); @@ -316,7 +316,7 @@ void Server::registerLinkLocalSession(boost::shared_ptr session) { session->onElementReceived.connect( boost::bind(&Server::handleLinkLocalElementReceived, this, _1, session)); linkLocalSessions.push_back(session); - tracers.push_back(boost::shared_ptr(new SessionTracer(session))); + //tracers.push_back(boost::shared_ptr(new SessionTracer(session))); session->startSession(); } diff --git a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourBrowseQuery.h b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourBrowseQuery.h index c605175..2dec2fb 100644 --- a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourBrowseQuery.h +++ b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourBrowseQuery.h @@ -41,7 +41,7 @@ namespace Swift { MainEventLoop::postEvent(boost::bind(boost::ref(onError)), shared_from_this()); } else { - std::cout << "Discovered service: name:" << name << " domain:" << domain << " type: " << type << std::endl; + //std::cout << "Discovered service: name:" << name << " domain:" << domain << " type: " << type << std::endl; DNSSDServiceID service(name, domain, type, interfaceIndex); if (flags & kDNSServiceFlagsAdd) { MainEventLoop::postEvent(boost::bind(boost::ref(onServiceAdded), service), shared_from_this()); diff --git a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourResolveServiceQuery.h b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourResolveServiceQuery.h index 886b87b..1c38179 100644 --- a/Swiften/LinkLocal/DNSSD/Bonjour/BonjourResolveServiceQuery.h +++ b/Swiften/LinkLocal/DNSSD/Bonjour/BonjourResolveServiceQuery.h @@ -45,7 +45,7 @@ namespace Swift { MainEventLoop::postEvent(boost::bind(boost::ref(onServiceResolved), boost::optional()), shared_from_this()); } else { - std::cout << "Service resolved: name:" << fullName << " host:" << host << " port:" << port << std::endl; + //std::cout << "Service resolved: name:" << fullName << " host:" << host << " port:" << port << std::endl; MainEventLoop::postEvent( boost::bind( boost::ref(onServiceResolved), -- cgit v0.10.2-6-g49f6