diff src/proxy.c @ 338:9d258a0aa560

[gaim-migrate @ 348] Whoa, all kinds of things happened here. The applet looks better. The preferences dialog changes based on your compile-time options (oscar, gnome). Whispering works again. libfaim got updated; it can almost do RVOUS stuff, and hopefully soon can make requests too. The applet doesn't need to have its sounds go through GNOME, although it still can. There is code to facilitate SOCKS5 support (all that needs to be done is to actually write the code to communicate with the proxy server). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 06 Jun 2000 09:55:30 +0000
parents 5b28ef2b550e
children b402a23f35df
line wrap: on
line diff
--- a/src/proxy.c	Tue Jun 06 09:36:12 2000 +0000
+++ b/src/proxy.c	Tue Jun 06 09:55:30 2000 +0000
@@ -174,7 +174,7 @@
 	        
                 return ret;
                 break;
-        case PROXY_SOCKS: /* Socks v4 proxy (? I'm not a proxy hacker) */
+        case PROXY_SOCKS4: /* Socks v4 proxy (? I'm not a proxy hacker) */
 		/* this is going to be a cross between the HTTP proxy code
 		 * above and the TiK proxy code, translated from tcl->C */
 		{
@@ -228,6 +228,9 @@
 		}
 		return ret;
                 break;
+	case PROXY_SOCKS5:
+		return -1;
+		break;
         default:
                 fprintf(stderr,"Unknown proxy type : %d.\n",proxy_type);
                 break;