diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2006-07-11 18:50:49 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2006-07-11 18:50:49 +0000 |
commit | 08c0648542c379047cf09b0eee2f33d4d17cf40f (patch) | |
tree | a34bcb2706ce1e4eb7436020dd75ccd693ac730c /usr.bin/ssh/readconf.h | |
parent | 449534206efec379c6c63b56bd7a56549ccf2ccd (diff) |
add ExitOnForwardFailure: terminate the connection if ssh(1)
cannot set up all requested dynamic, local, and remote port
forwardings. ok djm, dtucker, stevesk, jmc
Diffstat (limited to 'usr.bin/ssh/readconf.h')
-rw-r--r-- | usr.bin/ssh/readconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/readconf.h b/usr.bin/ssh/readconf.h index 7fc2ea47c67..e99b1ff2569 100644 --- a/usr.bin/ssh/readconf.h +++ b/usr.bin/ssh/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.69 2006/03/25 22:22:43 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.70 2006/07/11 18:50:48 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -34,6 +34,7 @@ typedef struct { int forward_agent; /* Forward authentication agent. */ int forward_x11; /* Forward X11 display. */ int forward_x11_trusted; /* Trust Forward X11 display. */ + int exit_on_forward_failure; /* Exit if bind(2) fails for -L/-R */ char *xauth_location; /* Location for xauth program */ int gateway_ports; /* Allow remote connects to forwarded ports. */ int use_privileged_port; /* Don't use privileged port if false. */ |