diff options
author | 2005-06-16 03:38:36 +0000 | |
---|---|---|
committer | 2005-06-16 03:38:36 +0000 | |
commit | 31d3c030ce4fdf1479181bffe11035d7cdc274e3 (patch) | |
tree | 56c80fc15d127b909af9c15d34649d98927df4ea /usr.bin/ssh/channels.h | |
parent | sync (diff) | |
download | wireguard-openbsd-31d3c030ce4fdf1479181bffe11035d7cdc274e3.tar.xz wireguard-openbsd-31d3c030ce4fdf1479181bffe11035d7cdc274e3.zip |
move x11_get_proto from ssh.c to clientloop.c, to make muliplexed xfwd easier
later; ok deraadt@
Diffstat (limited to 'usr.bin/ssh/channels.h')
-rw-r--r-- | usr.bin/ssh/channels.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h index fed481f3997..071d6833906 100644 --- a/usr.bin/ssh/channels.h +++ b/usr.bin/ssh/channels.h @@ -1,4 +1,4 @@ -/* $OpenBSD: channels.h,v 1.76 2005/03/01 10:09:52 djm Exp $ */ +/* $OpenBSD: channels.h,v 1.77 2005/06/16 03:38:36 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -215,7 +215,8 @@ int channel_cancel_rport_listener(const char *, u_short); int x11_connect_display(void); int x11_create_display_inet(int, int, int, u_int *); void x11_input_open(int, u_int32_t, void *); -void x11_request_forwarding_with_spoofing(int, const char *, const char *); +void x11_request_forwarding_with_spoofing(int, const char *, const char *, + const char *); void deny_input_open(int, u_int32_t, void *); /* agent forwarding */ |