1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 19:42:48 -05:00

SSH port forwarding! How cool is that?

Only currently works on SSH1; SSH2 should be doable but it's late
and I have other things to do tonight. The Cool Guy award for this
one goes to Nicolas Barry, for doing most of the work and actually
understanding the code he was adding to.

[originally from svn r1176]
This commit is contained in:
Simon Tatham
2001-08-08 20:44:35 +00:00
parent 4d3aad22f5
commit 50766ce729
13 changed files with 738 additions and 40 deletions

View File

@ -197,10 +197,9 @@ char *x11_init(Socket * s, char *display, void *c)
void x11_close(Socket s)
{
struct X11Private *pr;
if (!s)
return;
if (!s)
return;
pr = (struct X11Private *) sk_get_private_ptr(s);
if (pr->auth_protocol) {
sfree(pr->auth_protocol);
sfree(pr->auth_data);