Support, on Unix only (so far), for OpenSSH-style generic proxying
[sgt/putty] / pproxy.c
diff --git a/pproxy.c b/pproxy.c
new file mode 100644 (file)
index 0000000..6a870ed
--- /dev/null
+++ b/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 new_connection(SockAddr addr, char *hostname,
+                     int port, int privport,
+                     int oobinline, int nodelay, Plug plug,
+                     const Config *cfg)
+{
+    return NULL;
+}