forked from openssh/openssh-portable
-
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.
- [email protected] 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@
- Loading branch information
Showing
6 changed files
with
138 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
20050617 | ||
- (djm) OpenBSD CVS Sync | ||
- [email protected] 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@ | ||
|
||
|
||
20050616 | ||
- (djm) OpenBSD CVS Sync | ||
- [email protected] 2005/06/07 13:25:23 | ||
|
@@ -2714,4 +2722,4 @@ | |
- (djm) Trim deprecated options from INSTALL. Mention UsePAM | ||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | ||
|
||
$Id: ChangeLog,v 1.3820 2005/06/16 03:21:17 djm Exp $ | ||
$Id: ChangeLog,v 1.3821 2005/06/17 02:54:33 djm Exp $ |
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 |
---|---|---|
@@ -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 <[email protected]> | ||
|
@@ -216,7 +216,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 */ | ||
|
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 |
---|---|---|
@@ -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 <[email protected]> | ||
|
@@ -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 *); | ||
|
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