]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - pproxy.c
Support, on Unix only (so far), for OpenSSH-style generic proxying
[PuTTY.git] / pproxy.c
1 /*
2  * pproxy.c: dummy implementation of platform_new_connection(), to
3  * be supplanted on any platform which has its own local proxy
4  * method.
5  */
6
7 #include "putty.h"
8 #include "network.h"
9 #include "proxy.h"
10
11 Socket new_connection(SockAddr addr, char *hostname,
12                       int port, int privport,
13                       int oobinline, int nodelay, Plug plug,
14                       const Config *cfg)
15 {
16     return NULL;
17 }