Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proxy/pproxy.c')
-rw-r--r--proxy/pproxy.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/proxy/pproxy.c b/proxy/pproxy.c
new file mode 100644
index 00000000..1712ae8c
--- /dev/null
+++ b/proxy/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 *platform_new_connection(SockAddr *addr, const char *hostname,
+ int port, int privport,
+ int oobinline, int nodelay, int keepalive,
+ Plug *plug, Conf *conf, Interactor *itr)
+{
+ return NULL;
+}