Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
d51c6604
Commit
d51c6604
authored
Mar 20, 2002
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(make_client_session_channel): Clear the
CHANNEL_CLOSE_AT_EOF flag. Rev: src/client_session.c:1.17
parent
b6a40b52
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client_session.c
+7
-0
7 additions, 0 deletions
src/client_session.c
with
7 additions
and
0 deletions
src/client_session.c
+
7
−
0
View file @
d51c6604
...
@@ -203,6 +203,13 @@ make_client_session_channel(struct lsh_fd *in,
...
@@ -203,6 +203,13 @@ make_client_session_channel(struct lsh_fd *in,
* dies, no matter when or how. */
* dies, no matter when or how. */
self
->
super
.
close
=
do_client_session_close
;
self
->
super
.
close
=
do_client_session_close
;
/* We could miss the server's exit-status or exit-signal message if
* we close the channel directly at EOF. So don't do that.
*
* FIXME: Perhaps we need to set this bit again in do_exit_status
* and do_exit_signal. */
self
->
super
.
flags
&=
~
CHANNEL_CLOSE_AT_EOF
;
/* FIXME: We make rec_window_size non-zero here, but we don't setup
/* FIXME: We make rec_window_size non-zero here, but we don't setup
* the receive pointer until later, in do_client_io. That's bad. Do
* the receive pointer until later, in do_client_io. That's bad. Do
* something similar to server_session.c: Add an inital_window
* something similar to server_session.c: Add an inital_window
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment