forked from larryli/PuTTY
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support, on Unix only (so far), for OpenSSH-style generic proxying
(running a local command in a pair of pipes and proxying through that, for example `ssh proxyhost nc -q0 %host %port'). [originally from svn r3164]
- Loading branch information
Showing
8 changed files
with
563 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} |
Oops, something went wrong.