-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pylibssh no longer crashes when received EOF or when channel is not explicitly | ||
closed -- by :user:`pbrezina` | ||
|
||
Previously, pylibssh crashed if channel.recv was called and libssh returned | ||
SSH_EOF error. It also crashed on some special occasions where channel was not | ||
explicitly closed and the session object was garbage-collected first. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fixed example for exec_command -- by :user:`pbrezina` | ||
|
||
The example now contains correct method code and is fully functional. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Published call to request_exec and other low level API -- by :user:`pbrezina` | ||
|
||
The following calls to libssh are now available: request_exec, send_eof, is_eof, | ||
request_send_signal. |