Re: UDP Communication with Euphoria
- Posted by Craig Welch <euphoriah at cwelch.org> Jan 20, 2007
- 589 views
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