Skip to content
GitLab
Menu
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
b741be99
Commit
b741be99
authored
Mar 26, 2000
by
Niels Möller
Browse files
* src/client.c (make_client_session): Removed references to
max_window. Rev: src/client.c:1.90 Rev: src/client.h:1.29
parent
05a49c76
Changes
2
Show whitespace changes
Inline
Side-by-side
src/client.c
View file @
b741be99
...
...
@@ -430,10 +430,11 @@ struct command client_io =
{
STATIC_HEADER
,
do_client_io
};
struct
ssh_channel
*
make_client_session
(
struct
lsh_fd
*
in
,
struct
ssh_channel
*
make_client_session
(
struct
lsh_fd
*
in
,
struct
lsh_fd
*
out
,
struct
lsh_fd
*
err
,
UINT32
max
_window
,
UINT32
initial
_window
,
int
*
exit_status
)
{
NEW
(
client_session
,
self
);
...
...
@@ -444,8 +445,7 @@ struct ssh_channel *make_client_session(struct lsh_fd *in,
* dies, no matter when or how. */
self
->
super
.
close
=
do_client_session_close
;
self
->
super
.
max_window
=
max_window
;
self
->
super
.
rec_window_size
=
max_window
;
self
->
super
.
rec_window_size
=
initial_window
;
/* FIXME: Make maximum packet size configurable */
self
->
super
.
rec_max_packet
=
SSH_MAX_PACKET
;
...
...
src/client.h
View file @
b741be99
...
...
@@ -65,7 +65,7 @@ extern struct command client_io;
struct
ssh_channel
*
make_client_session
(
struct
lsh_fd
*
in
,
struct
lsh_fd
*
out
,
struct
lsh_fd
*
err
,
UINT32
max
_window
,
UINT32
initial
_window
,
int
*
exit_status
);
struct
command
*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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