remote.h interfaces sync with Java - cleanup

This commit is contained in:
Matej Sekoranja
2012-07-25 12:46:04 +02:00
parent 48f8b3b77e
commit 4f15626281
18 changed files with 202 additions and 231 deletions
+3 -3
View File
@@ -336,7 +336,7 @@ void ServerContextImpl::internalDestroy()
// stop responding to search requests
if (_broadcastTransport != NULL)
{
_broadcastTransport->close(true);
_broadcastTransport->close();
_broadcastTransport.reset();
}
@@ -382,7 +382,7 @@ void ServerContextImpl::destroyAllTransports()
Transport::shared_pointer transport = (*transports)[i];
try
{
transport->close(true);
transport->close();
}
catch (std::exception &e)
{
@@ -553,7 +553,7 @@ Transport::shared_pointer ServerContextImpl::getSearchTransport()
return Transport::shared_pointer();
}
void ServerContextImpl::beaconAnomalyNotify()
void ServerContextImpl::newServerDetected()
{
// not used
}