Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / pproxy.c
CommitLineData
0f0a2507 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
30a78aa7 11Socket platform_new_connection(SockAddr addr, char *hostname,
12 int port, int privport,
79bf227b 13 int oobinline, int nodelay, int keepalive,
4a693cfc 14 Plug plug, Conf *conf)
0f0a2507 15{
16 return NULL;
17}