Browse Source

- fix for UPnP option

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
e0a0a0beb1
  1. 3
      TODO
  2. 6
      src/GUI.cpp
  3. 4
      src/bittorrent.cpp
  4. 2
      src/bittorrent.h

3
TODO

@ -42,4 +42,5 @@ @@ -42,4 +42,5 @@
- Display Url seeds in torrent properties and allow to edit them
- Improve Ipfilter.dat parser (move to a thread ?)
- Use tooltips to explain options
- Exit confirmation only if there are active downloads
- Exit confirmation only if there are active downloads
- Support UPnP port edition

6
src/GUI.cpp

@ -986,7 +986,11 @@ void GUI::configureSession(bool deleteOptions){ @@ -986,7 +986,11 @@ void GUI::configureSession(bool deleteOptions){
}
#ifndef NO_UPNP
// Upnp
BTSession.enableUPnP();
if(options->isDHTEnabled()){
BTSession.enableUPnP(options->getUPnPPort());
}else{
BTSession.disableUPnP();
}
#endif
// PeX
if(!options->isPeXDisabled()){

4
src/bittorrent.cpp

@ -75,7 +75,7 @@ torrent_handle bittorrent::getTorrentHandle(const QString& hash) const{ @@ -75,7 +75,7 @@ torrent_handle bittorrent::getTorrentHandle(const QString& hash) const{
}
#ifndef NO_UPNP
void bittorrent::enableUPnP(){
void bittorrent::enableUPnP(int port){
if(!UPnPEnabled){
qDebug("Enabling UPnP");
UPnPEnabled = true;
@ -85,7 +85,7 @@ void bittorrent::enableUPnP(){ @@ -85,7 +85,7 @@ void bittorrent::enableUPnP(){
"TCP",
true,
"qBittorrent");
m_upnp = new CUPnPControlPoint(50000);
m_upnp = new CUPnPControlPoint(port);
m_upnp->AddPortMappings(m_upnpMappings);
}
}

2
src/bittorrent.h

@ -119,7 +119,7 @@ class bittorrent : public QObject{ @@ -119,7 +119,7 @@ class bittorrent : public QObject{
void setSessionSettings(session_settings sessionSettings);
void setDefaultSavePath(const QString& savepath);
#ifndef NO_UPNP
void enableUPnP();
void enableUPnP(int port=50000);
void disableUPnP();
#endif

Loading…
Cancel
Save