Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
9fd31429
Commit
9fd31429
authored
Nov 15, 2000
by
Niels Möller
Browse files
*** empty log message ***
Rev: NEWS:1.65 Rev: src/channel_commands.h:1.16 Rev: src/client_userauth.c:1.42
parent
bd108a56
Changes
3
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
9fd31429
News for the 1.1.2 release:
Added signal handlers to io_backend.
Reorganized the code a little to make the lshg binary smaller.
Some work on an "interactive" class, encapsulating the
oparations one may want to do on the user's tty, including
subscription for window change events.
News for the 1.1.1 release:
First try for the gateway mode. New option -G for lsh, and a
...
...
src/channel_commands.h
View file @
9fd31429
...
...
@@ -32,7 +32,8 @@
#undef GABA_DECLARE
/* Command to open a new channel. Takes a connection as argument
* returns a new channel or NULL if opening failed. */
* returns a new channel. Raises an exception on error. FIXME: Which
* exception??? */
/* GABA:
(class
...
...
@@ -55,7 +56,8 @@ void do_channel_open_command(struct command *s,
struct
command_continuation
*
c
,
struct
exception_handler
*
e
);
/* Takes a channel as argument, and returns the same channel or NULL. */
/* Takes a channel as argument, and returns the same channel. Raises
* an exception on error. FIXME: Which exception??? */
/* GABA:
(class
(name channel_request_command)
...
...
@@ -90,6 +92,15 @@ void do_channel_request_command(struct command *s,
#define FORMAT_GLOBAL_REQUEST(r, conn, c) \
((r)->format_request((r), (conn), (c)))
/* For simple channel-related commands */
/* ;; GABA:
(class
(name channel_command)
(super command)
(vars
(channel object ssh_channel)))
*/
void
do_channel_global_command
(
struct
command
*
s
,
struct
lsh_object
*
x
,
struct
command_continuation
*
c
,
...
...
src/client_userauth.c
View file @
9fd31429
...
...
@@ -29,7 +29,6 @@
#include
"parse.h"
#include
"password.h"
#include
"publickey_crypto.h"
#include
"service.h"
#include
"ssh.h"
#include
"werror.h"
#include
"xalloc.h"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment