1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*
* Copyright (c) 2010-2011 Thilo Cestonaro
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <gconf/gconf-client.h>
#include <Swiften/Base/Log.h>
#include <Swiften/Network/GConfProxyProvider.h>
namespace Swift {
GConfProxyProvider::GConfProxyProvider() {
// Ensure static GLib initialization methods are called
static bool glibInitialized = false;
if (!glibInitialized) {
g_type_init();
glibInitialized = true;
}
socksProxy = getFromGConf("/system/proxy/socks_host", "/system/proxy/socks_port");
httpProxy = getFromGConf("/system/http_proxy/host", "/system/http_proxy/port");
SWIFT_LOG(debug) << "GConf: SOCKS5 => " << socksProxy.toString() << "; HTTP Connect => " << httpProxy.toString() << std::endl;
}
HostAddressPort GConfProxyProvider::getHTTPConnectProxy() const {
return httpProxy;
}
HostAddressPort GConfProxyProvider::getSOCKS5Proxy() const {
return socksProxy;
}
HostAddressPort GConfProxyProvider::getFromGConf(const char* gcHost, const char* gcPort) {
std::string address;
int port = 0;
gchar* str;
GConfClient* client = gconf_client_get_default();
str = gconf_client_get_string(client, gcHost, NULL);
port = static_cast<int> (gconf_client_get_int(client, gcPort, NULL));
if(str) {
address = static_cast<char*> (str);
g_free(str);
}
g_object_unref(client);
return HostAddressPort(HostAddress(address), port);
}
}
|