diff options
author | Damien Miller <djm@mindrot.org> | 2005-06-17 12:54:33 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-06-17 12:54:33 +1000 |
commit | 17e7ed0e754577ae61cdd5e3f03b33fba2a09337 (patch) | |
tree | 1dbcf0b65de4ec2a28929a0546a24de38cd15803 /clientloop.h | |
parent | 46f55d366508ab7eab3c1dcdf0ec8c61f0e798a3 (diff) | |
download | openssh-git-17e7ed0e754577ae61cdd5e3f03b33fba2a09337.tar.gz |
- (djm) OpenBSD CVS Sync
- djm@cvs.openbsd.org 2005/06/16 03:38:36
[channels.c channels.h clientloop.c clientloop.h ssh.c]
move x11_get_proto from ssh.c to clientloop.c, to make muliplexed xfwd
easier later; ok deraadt@
Diffstat (limited to 'clientloop.h')
-rw-r--r-- | clientloop.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clientloop.h b/clientloop.h index b23c111c..71c61b5d 100644 --- a/clientloop.h +++ b/clientloop.h @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.h,v 1.12 2004/11/07 00:01:46 djm Exp $ */ +/* $OpenBSD: clientloop.h,v 1.13 2005/06/16 03:38:36 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -37,6 +37,8 @@ /* Client side main loop for the interactive session. */ int client_loop(int, int, int); +void client_x11_get_proto(const char *, const char *, u_int, + char **, char **); void client_global_request_reply_fwd(int, u_int32_t, void *); void client_session2_setup(int, int, int, const char *, struct termios *, int, Buffer *, char **, dispatch_fn *); |