From 021d4a85455e3ba21d843f8f7917ae49b69a7cdd Mon Sep 17 00:00:00 2001 From: Ragner Magalhaes Date: Tue, 2 Dec 2008 20:57:07 +0000 Subject: [PATCH] Adding host to function set_info Adding host to function set_info in ProxyInfo class Signed-off-by: Ragner Magalhaes git-svn-id: https://garage.maemo.org/svn/carman/branches/carman-0.7-beta2/python-purple@1379 596f6dd7-e928-0410-a184-9e12fd12cf7e --- proxy.pyx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/proxy.pyx b/proxy.pyx index 2948e15..49e83d2 100644 --- a/proxy.pyx +++ b/proxy.pyx @@ -95,7 +95,7 @@ cdef class ProxyInfo: def set_info(self, acc, info): ''' @param acc Tuple (username, protocol id) ''' ''' @param info Dictionary {'type': "HTTP", 'port': "1234", ''' - ''' 'username': "foo", 'passworld': "foo123"} ''' + ''' 'host': "1.2.3.4", 'username': "foo", 'passworld': "foo123"} ''' cdef account.PurpleAccount *c_account cdef proxy.PurpleProxyInfo *c_proxyinfo @@ -114,6 +114,10 @@ cdef class ProxyInfo: return False proxy.c_purple_proxy_info_set_type(c_proxyinfo, self.types[type]) + if info.has_key('host'): + host = info['host'] + proxy.c_purple_proxy_info_set_host(c_proxyinfo, host) + if info.has_key('port'): port = int(info['port']) proxy.c_purple_proxy_info_set_port(c_proxyinfo, port) @@ -125,5 +129,5 @@ cdef class ProxyInfo: if info.has_key('password'): password = info['password'] proxy.c_purple_proxy_info_set_password(c_proxyinfo, password) - + return True -- 1.7.9.5