X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/811453cbc32f1f0f14cfef25f54eabf2e3b28bd9..0f0a25075f6e788462506686cf538bc13a5beedb:/pproxy.c diff --git a/pproxy.c b/pproxy.c new file mode 100644 index 00000000..6a870ed1 --- /dev/null +++ b/pproxy.c @@ -0,0 +1,17 @@ +/* + * pproxy.c: dummy implementation of platform_new_connection(), to + * be supplanted on any platform which has its own local proxy + * method. + */ + +#include "putty.h" +#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) +{ + return NULL; +}