search for: proxy_host

Displaying 10 results from an estimated 10 matches for "proxy_host".

2018 Jan 15
0
doveadm mailbox command fails if backend has an IPv6 address
...---------- --- dovecot-2.2.33.2/src/doveadm/doveadm-mail-server.c.orig 2017-10-05 19:09:55.000000000 +0200 +++ dovecot-2.2.33.2/src/doveadm/doveadm-mail-server.c 2018-01-15 21:59:08.897161000 +0100 @@ -249,7 +249,10 @@ } ret = -1; } else { - *host_r = t_strdup_printf("%s:%u", proxy_host, proxy_port); + if (is_ipv6_address(proxy_host) && *proxy_host != '[') + *host_r = t_strdup_printf("[%s]:%u", proxy_host, proxy_port); + else + *host_r = t_strdup_printf("%s:%u", proxy_host, proxy_port); } } pool_unref(&pool);
2005 Mar 09
1
XMMS plugin: string handling bugs
There are problems in the configure option handling code for http streaming that was added to the XMMS plugin for 1.1.2. In configure.c, flac_cfg.stream.proxy_host and other pointers to strings are initialized with pointers to an empty string "". Subsequent code in FLAC_XMMS__init() and flac_configurewin_ok() passes these pointers to g_free(). Since they don't point to memory that was ever allocated through malloc(), what happens next is undefi...
2005 Apr 01
1
bug in xmms plugin v 1.1.2
...n.c ------- --- /tmp/sccs.zza4YF Thu Mar 31 20:03:46 2005 +++ plugin.c Mon Mar 28 19:58:20 2005 @@ -219,6 +219,12 @@ is_big_endian_host_ = (*((FLAC__byte*)(&test)))? false : true; + /* make all the config struct strings dynamic, to ease our life */ + flac_cfg.stream.proxy_host = g_strdup(flac_cfg.stream.proxy_host); + flac_cfg.stream.proxy_user = g_strdup(flac_cfg.stream.proxy_user); + flac_cfg.stream.proxy_pass = g_strdup(flac_cfg.stream.proxy_pass); + flac_cfg.stream.save_http_path = g_strdup(flac_cfg.stream.save_http_path); + flac_cfg.title...
2010 Apr 16
0
How do I redirect my users to video via a proxy server?
I have a rails app where I am trying to re-direct my users to a video resource on a remote server via a proxy. I am using the Net::HTTP::Proxy class but I''m not sure the right way to do this. I tried this code; urlToGet = ''videos/sample.mp4'' proxy_host = ''myproxy.com'' proxy_port = 80 proxy_class = Net::HTTP::Proxy(proxy_host,proxy_port) res = proxy_class.start(''www.example.com''){|http| redirect_to http.get(urlToGet) } This gives me an error: NoMethodError (undefined method `net_...
2004 Sep 10
0
http streaming in the xmms plugin
...:04 2003 --- configure.c Thu Jun 5 16:30:20 2003 *************** *** 50,55 **** --- 50,70 ---- NULL, /* file_char_set */ NULL /* user_char_set */ }, + /* stream */ + { + 100 /* KB */, /* http_buffer_size */ + 50, /* http_prebuffer */ + FALSE, /* use_proxy */ + "", /* proxy_host */ + 0, /* proxy_port */ + FALSE, /* proxy_use_auth */ + "", /* proxy_user */ + "", /* proxy_pass */ + FALSE, /* save_http_stream */ + "", /* save_http_path */ + FALSE, /* cast_title_streaming */ + FALSE /* use_udp_channel */ + }, /* output */ {...
2007 Jun 20
4
puppetmaster through HTTP proxy
I have a test area network that is not routed to the production network because of IP address space re-use between the two networks. I would like the puppetmaster to serve both the production and test area networks. The puppetmaster is on the production network. I understand the puppet to puppetmaster connect to be HTTP using SSL. Can I somehow setup the puppet clients to use an HTTP
2006 Aug 16
7
ActionWebService: XMLRPC Server Multicall possible?
Hi all, I have a question concerning ActionWebService XMLRPC servers: Is it possible to send multicall requests to the Web service? I tried to use multicall and get the error message: no such method ''system.multicall'' on API [MyAPI] In Changeset 2021 there is the following commit message: add ''system.multicall'' support to XML-RPC. boxcarred methods must
2007 Apr 17
0
rflickr: invalid auth token when uploading
...<Flickr:0xb5c2dfac @person_by_nsid={}, @test=nil, @shared_secret=\"\", @interestingness=nil, @reflection=nil, @photosets=nil, @api_key=\"\", @favorites=nil, @auth=nil, @caching=true, @client=#<XMLRPC::Client:0xb5c2de30 @http_header_extra=nil, @proxy_port=nil, @parser=nil, @proxy_host=nil, @host=\"www.flickr.com\", @create=nil, @auth=nil, @user=nil, @port=80, @use_ssl=false, @cookie=nil, @http=#<Net::HTTP www.flickr.com:80 open=false>, @password=nil, @timeout=30, @http_last_response=nil, @path=\"/services/xmlrpc/\">, @endpoint=\"http://www.flick...
2012 Jul 12
15
How can I list classes available on the puppet master?
Is there a way to get a list of all the classes available from the puppet master? I have 2 goals for this - one is documentation in a human readable form, and the other is potentially importing that data into dashboard. I did find some info on the rest API (http://docs.puppetlabs.com/guides/rest_api.html#resource-types ) but I can''t make any sense of the output from it. Thanks.
2006 Aug 24
3
Mousehole stuff
Hey everyone, I''m using mousehole for the first time today (love the artwork, btw) and I seem to be having problems with Camping and Markaby. When I go to the Apps page I get: Camping Problem! MouseHole::Controllers::RApps.GET TypeError /Users/tzaharia/Sites/mouseHole/lib/mouseHole/views.rb:78:in `+'': can''t convert String into Array:bla bla bla... The line in question