1. UDP Communication with Euphoria

Anybody here know how to do this with Euphoria:

   http://www.heise-security.co.uk/articles/82481

I've got an install program for my company and every so often somebody can't
use it because of firewall or proxy server issues. I'd love to resolve this!
If anybody knows how to do what the article says, please let me know.

new topic     » topic index » view message » categorize

2. Re: UDP Communication with Euphoria

c.k.lester wrote:

> I've got an install program for my company and every so often somebody can't
> use it because of firewall or proxy server issues. I'd love to resolve this!

Perhaps this might help you develop a solution:

I went to my laptop, which does connect via a proxy server.

In HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet 
Settings,

ProxyEnable : 1
ProxyServer : 192.168.0.1:4400 (the address of the proxy server)

On the PC which runs my proxy server

ProxyEnable : 0
ProxyServer key does not exist

Easy enough to check and use those registry settings. However, I assume 
that would only work if the user is using IE.

If I look at a proper browser, such as Firefox, I find the following:

in C:\Documents and Settings\Craig\Application 
Data\Mozilla\Firefox\Profiles\ql94wiud.default\prefs.js

user_pref("network.proxy.ftp", "192.168.0.1");
user_pref("network.proxy.ftp_port", 4421);
user_pref("network.proxy.gopher", "192.168.0.1");
user_pref("network.proxy.gopher_port", 4480);
user_pref("network.proxy.http", "192.168.0.1");
user_pref("network.proxy.http_port", 4480);
user_pref("network.proxy.socks", "192.168.0.1");
user_pref("network.proxy.socks_port", 1080);
user_pref("network.proxy.ssl", "192.168.0.1");
user_pref("network.proxy.ssl_port", 4480);
user_pref("network.proxy.type", 1);

HTH

-- 
Craig

new topic     » goto parent     » topic index » view message » categorize

3. Re: UDP Communication with Euphoria

c.k.lester wrote:

> I've got an install program for my company and every so often somebody can't
> use it because of firewall or proxy server issues. I'd love to resolve this!

Perhaps this might help you develop a solution:

I went to my laptop, which does connect via a proxy server.

In HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings,

ProxyEnable : 1
ProxyServer : 192.168.0.1:4400 (the address of the proxy server)

On the PC which runs my proxy server

ProxyEnable : 0
ProxyServer key does not exist

Easy enough to check and use those registry settings. However, I assume
that would only work if the user is using IE.

If I look at a proper browser, such as Firefox, I find the following:

in C:\Documents and Settings\Craig\Application
Data\Mozilla\Firefox\Profiles\ql94wiud.default\prefs.js

user_pref("network.proxy.ftp", "192.168.0.1");
user_pref("network.proxy.ftp_port", 4421);
user_pref("network.proxy.gopher", "192.168.0.1");
user_pref("network.proxy.gopher_port", 4480);
user_pref("network.proxy.http", "192.168.0.1");
user_pref("network.proxy.http_port", 4480);
user_pref("network.proxy.socks", "192.168.0.1");
user_pref("network.proxy.socks_port", 1080);
user_pref("network.proxy.ssl", "192.168.0.1");
user_pref("network.proxy.ssl_port", 4480);
user_pref("network.proxy.type", 1);

HTH

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu