]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Ahem. Well, the complicated Unix implementation of
authorSimon Tatham <anakin@pobox.com>
Wed, 7 May 2003 08:49:57 +0000 (08:49 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 7 May 2003 08:49:57 +0000 (08:49 +0000)
platform_new_connection() worked fine, but the really simple stub
version for the other ports fell over horribly because I got its
name wrong. NEVER ASSUME YOU'VE DONE THE EASY BIT RIGHT.

[originally from svn r3166]

pproxy.c

index 6a870ed1bf4d9f4411d0838cddb1324cff27656c..5cb90162ecbf6d1f31385d430241778a524f4bbc 100644 (file)
--- a/pproxy.c
+++ b/pproxy.c
@@ -8,10 +8,10 @@
 #include "network.h"
 #include "proxy.h"
 
-Socket new_connection(SockAddr addr, char *hostname,
-                     int port, int privport,
-                     int oobinline, int nodelay, Plug plug,
-                     const Config *cfg)
+Socket platform_new_connection(SockAddr addr, char *hostname,
+                              int port, int privport,
+                              int oobinline, int nodelay, Plug plug,
+                              const Config *cfg)
 {
     return NULL;
 }