From: Simon Tatham Date: Wed, 7 May 2003 08:49:57 +0000 (+0000) Subject: Ahem. Well, the complicated Unix implementation of X-Git-Tag: r8855-g4f798d~1403 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=76bee2d8423edd5425eae90d1b84b3c70ebf3f0e;p=PuTTY_svn.git Ahem. Well, the complicated Unix implementation of 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. git-svn-id: http://svn.tartarus.org/sgt/putty@3166 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/pproxy.c b/pproxy.c index 6a870ed1..5cb90162 100644 --- 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; }