1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

- Added some more debug in upnp code

This commit is contained in:
Christophe Dumez 2007-03-29 18:14:45 +00:00
parent 76d9a230c0
commit 5ddc3467f8

View File

@ -3,6 +3,7 @@
// //
// Copyright (c) 2006 Marcelo Roberto Jimenez ( phoenix@amule.org ) // Copyright (c) 2006 Marcelo Roberto Jimenez ( phoenix@amule.org )
// Copyright (c) 2006 aMule Team ( admin@amule.org / http://www.amule.org ) // Copyright (c) 2006 aMule Team ( admin@amule.org / http://www.amule.org )
// Edited by Christophe Dumez for qBittorrent
// //
// Any parts of this program derived from the xMule, lMule or eMule project, // Any parts of this program derived from the xMule, lMule or eMule project,
// or contributed by third-party developers are copyrighted by their // or contributed by third-party developers are copyrighted by their
@ -663,8 +664,7 @@ bool CUPnPService::Execute(
ixmlDocument_free(ActionDoc); ixmlDocument_free(ActionDoc);
// Check the response document // Check the response document
m_upnpLib.ProcessActionResponse( m_upnpLib.ProcessActionResponse(RespDoc, action.GetName());
RespDoc, action.GetName());
// Free the response document // Free the response document
ixmlDocument_free(RespDoc); ixmlDocument_free(RespDoc);
@ -869,6 +869,7 @@ error:
CUPnPControlPoint::~CUPnPControlPoint() CUPnPControlPoint::~CUPnPControlPoint()
{ {
qDebug("UPnP: Destroying control point");
for( RootDeviceMap::iterator it = m_RootDeviceMap.begin(); for( RootDeviceMap::iterator it = m_RootDeviceMap.begin();
it != m_RootDeviceMap.end(); it != m_RootDeviceMap.end();
++it) { ++it) {
@ -876,8 +877,11 @@ CUPnPControlPoint::~CUPnPControlPoint()
} }
// Remove all first // Remove all first
// RemoveAll(); // RemoveAll();
qDebug("UPnP: Unregistering control point");
UpnpUnRegisterClient(m_UPnPClientHandle); UpnpUnRegisterClient(m_UPnPClientHandle);
qDebug("UPnP: Clean up SDK");
UpnpFinish(); UpnpFinish();
qDebug("UPnP: Control point destroyed");
} }