mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
18 lines
389 B
C
18 lines
389 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|