mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
- Improved proxy support (search, rss, downloadFromUrl...)
This commit is contained in:
parent
9c05148a24
commit
a721e6d943
@ -22,6 +22,7 @@
|
|||||||
#include "downloadThread.h"
|
#include "downloadThread.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cc++/common.h>
|
#include <cc++/common.h>
|
||||||
|
#include <QSettings>
|
||||||
|
|
||||||
QString subDownloadThread::errorCodeToString(int status) {
|
QString subDownloadThread::errorCodeToString(int status) {
|
||||||
switch(status){
|
switch(status){
|
||||||
@ -52,6 +53,18 @@ QString subDownloadThread::errorCodeToString(int status) {
|
|||||||
|
|
||||||
subDownloadThread::subDownloadThread(QObject *parent, QString url) : QThread(parent), url(url), abort(false){
|
subDownloadThread::subDownloadThread(QObject *parent, QString url) : QThread(parent), url(url), abort(false){
|
||||||
url_stream = new ost::URLStream();
|
url_stream = new ost::URLStream();
|
||||||
|
// Proxy support
|
||||||
|
QSettings settings("qBittorrent", "qBittorrent");
|
||||||
|
int intValue = settings.value(QString::fromUtf8("[Preferences/Connection/ProxyType"), 0).toInt();
|
||||||
|
if(intValue > 0) {
|
||||||
|
// Proxy enabled
|
||||||
|
url_stream->setProxy(settings.value(QString::fromUtf8("Preferences/Connection/Proxy/IP"), "0.0.0.0").toString().toUtf8().data(), settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Port"), 8080).toInt());
|
||||||
|
if(settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Authentication"), false).toBool()) {
|
||||||
|
// Authentication required
|
||||||
|
url_stream->setProxyUser(settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Username"), QString()).toString().toUtf8().data());
|
||||||
|
url_stream->setProxyPassword(settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Password"), QString()).toString().toUtf8().data());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
subDownloadThread::~subDownloadThread(){
|
subDownloadThread::~subDownloadThread(){
|
||||||
|
@ -34,6 +34,13 @@ namespace ost {
|
|||||||
class URLStream;
|
class URLStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
QString IP;
|
||||||
|
int port;
|
||||||
|
QString username;
|
||||||
|
QString password;
|
||||||
|
} tmp_proxy;
|
||||||
|
|
||||||
class subDownloadThread : public QThread {
|
class subDownloadThread : public QThread {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
private:
|
private:
|
||||||
@ -76,6 +83,7 @@ class downloadThread : public QThread {
|
|||||||
~downloadThread();
|
~downloadThread();
|
||||||
|
|
||||||
void downloadUrl(QString url);
|
void downloadUrl(QString url);
|
||||||
|
void setProxy(QString IP, int port, QString username, QString password);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void run();
|
void run();
|
||||||
|
Loading…
Reference in New Issue
Block a user