2003-05-06 23:52:31 +04:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
2003-05-07 12:49:57 +04:00
|
|
|
Socket platform_new_connection(SockAddr addr, char *hostname,
|
|
|
|
int port, int privport,
|
2004-06-20 21:07:38 +04:00
|
|
|
int oobinline, int nodelay, int keepalive,
|
|
|
|
Plug plug, const Config *cfg)
|
2003-05-06 23:52:31 +04:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|