parent
3ce104e0ef
commit
5dc631d3a4
9 changed files with 151 additions and 43 deletions
@ -0,0 +1,38 @@ |
||||
/*! @file
|
||||
|
||||
@id $Id$ |
||||
*/ |
||||
// 1 2 3 4 5 6 7 8
|
||||
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||
|
||||
#ifndef PROXY_QT |
||||
#define PROXY_QT |
||||
|
||||
#include <QtNetwork/QHostInfo> |
||||
|
||||
#include <QtCore/QDebug> |
||||
|
||||
namespace proxy { |
||||
|
||||
class Qt: public Interface { |
||||
|
||||
public: |
||||
|
||||
Qt() {} |
||||
|
||||
virtual ~Qt() {} |
||||
|
||||
//! Implements WPAD using Qt Network and Qt Webkit
|
||||
virtual List proxies(const std::string& url) { |
||||
List res; |
||||
qDebug()<<"Hostname: "<<QHostInfo::localHostName(); |
||||
qDebug()<<"Domainname: "<<QHostInfo::localDomainName(); |
||||
return res; |
||||
} |
||||
|
||||
|
||||
}; |
||||
|
||||
} |
||||
|
||||
#endif |
Loading…
Reference in new issue