search for: proxy_port

Displaying 15 results from an estimated 15 matches for "proxy_port".

Did you mean: proxy1_port
2002 Jul 17
2
[Patch] SSH through HTTP proxy using CONNECT
...t }, { "port", oPort }, { "cipher", oCipher }, { "ciphers", oCiphers }, @@ -484,6 +487,14 @@ xfree(string); return 0; + case oProxyServer: + charptr = &options->proxy_server; + goto parse_string; + + case oProxyPort: + intptr = &options->proxy_port; + goto parse_int; + case oPort: intptr = &options->port; parse_int: @@ -765,6 +776,8 @@ options->hostname = NULL; options->host_key_alias = NULL; options->proxy_command = NULL; + options->proxy_server = NULL; + options->proxy_port = -1; options->user = NULL;...
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);
2007 May 12
3
Asterisk High-Capacity Stability
...> So, what I really end up doing for most of my intelligent routing is > something like: > > --- > > avp_db_query("SELECT ip_addr, port FROM customer_proxies WHERE > customer_id = $avp(S:customer_id) AND active = true", > "$avp(S:proxy_ip);$avp(S:proxy_port)"); > > if(!is_avp_set("$avp(S:proxy_ip)") || > !is_avp_set("$avp(S:proxy_port)")) { > xlog("L_INFO", "target-das - [$ci] - Active proxy not > found.\n") > ; > sl_send_reply(&quo...
2010 Apr 16
0
How do I redirect my users to video via a proxy server?
...ying 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_http_see_other_url'' for #<MyController...
2004 Sep 10
0
http streaming in the xmms plugin
...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 */ { /* replaygain */ ***...
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
2007 Oct 07
1
How to store a Mechanize object in the database?
...in):039:0> agent.user = WWW::Mechanize.new #<WWW::Mechanize:0xb71295f0 @follow_meta_refresh=false, @key=nil, @user_agent="WWW-Mechanize/0.6.10 (http://rubyforge.org/projects/mechanize/)", @log=nil, @proxy_addr=nil, @keep_alive=true, @user=nil, @pass=nil, @conditional_requests=true, @proxy_port=nil, @pluggable_parser=#<WWW::Mechanize::PluggableParser:0xb712953c @parsers={"text/html"=>WWW::Mechanize::Page}, defaultWWW::Mechanize::File, read_timeoutnil, keep_alive_time300, ca_filenil, watch_for_setnil, proxy_passnil, auth_hash{}, certnil, history[], open_timeoutnil, connecti...
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
2011 May 24
0
read_nonblock': end of file reached (EOF Error)
...ire ''net/http'' APPLICATION_ID = ''XIM4jgY6YIrOoB'' YAHOO_WEB_SERVICE_SEARCH_URL = ''http://search.yahooapis.com/ WebSearchService/V1/webSearch'' query = ''world cup 2011'' results_limit = 10 proxy_addr = ''MyProxy'' proxy_port = 80 proxy_name = "MyName" proxy_pass = "MyPassword" path = "?appid=#{APPLICATION_ID}&query=#{URI.encode(query)} &results=#{results_limit}" Net::HTTP::Proxy(proxy_addr, roxy_port, proxy_name, proxy_pass ).start( YAHOO_WEB_SERVICE_SEARCH_URL ) do |http| respo...
2007 Apr 17
0
rflickr: invalid auth token when uploading
...I get the following: "#<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/\">, @en...
2012 Feb 14
2
R: Re: LMTP : Can't handle mixed proxy/non-proxy destinations
Hi Timo, I'm writing to alert you that even in version 2.1. we have the error: "Can't handle mixed proxy/non-proxy destinations" when we write to two users: one existent and one not. The error occurs randomly. I configure LDAP query in the file : dovecot-ldap.conf in this way: pass_attrs = mail=user,userPassword=password,=proxy=y,mailHost=host, =proxy_timeout=600
2019 Jan 04
1
Feature request: client bind address for replication
...--- --- dovecot-2.2.36/src/doveadm/doveadm-settings.c 2018-04-30 15:52:05.000000000 +0200 +++ dovecot-2.2.36-new/src/doveadm/doveadm-settings.c 2019-01-04 14:59:11.556270077 +0100 @@ -62,6 +62,7 @@ DEF(SET_UINT, doveadm_worker_count), DEF(SET_IN_PORT, doveadm_port), { SET_ALIAS, "doveadm_proxy_port", 0, NULL }, + DEF(SET_STR, doveadm_local_ip), DEF(SET_STR, doveadm_username), DEF(SET_STR, doveadm_password), DEF(SET_STR, doveadm_allowed_commands), @@ -91,6 +92,7 @@ .doveadm_socket_path = "doveadm-server", .doveadm_worker_count = 0, .doveadm_port = 0, + .doveadm_local...
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
2006 Jul 20
17
The Debian Plan
Hello Folks, After all the troubles people have had with Debian I realize that what I''ve done still isn''t enough for smooth sailing. I''m now going to hold back the 0.3.13.4 release in order to put an end to the Debian problem once and for all. I''m currently planning the following changes: 1) Specific documentation for Debian. Debian will become the only