diff options
author | David Timber <mieabby@gmail.com> | 2020-09-24 14:07:10 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-09-24 14:07:10 +0930 |
commit | 5529cb366b7e7e6bb2dedefa1d6495bdb4d0352f (patch) | |
tree | dcbff94e6d46668ccc77363b40e0f13e5e0e8237 /src/libssh2.c | |
parent | c1ae3eef633237525443d48622bb6f633392d2f6 (diff) |
* Impl bne
* Reduce timeout values
* Impl telnet vector
* Separate stx_str/stx_out and eot_str/eot_out to skip echo
* Bugfix: wrong BNE_CONN_OP_TIMEOUT timer reset
* vssh: skip account if password auth is not available
* bne_vssh_write_f(): propagate write() EOF
* No EINTR handling
* lssh2_handle()
* prne_mbedtls_pth_handle()
* resolv_ensure_act_dns_fd()
* Add util funcs for telnet login prompt parsing
* prne_transmem()
* prne_memrmem()
* prne_memmem()
Diffstat (limited to 'src/libssh2.c')
-rw-r--r-- | src/libssh2.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libssh2.c b/src/libssh2.c index 530e4ef..6e31c1e 100644 --- a/src/libssh2.c +++ b/src/libssh2.c @@ -88,13 +88,6 @@ static int lssh2_handle ( f_ret = prne_pth_poll(&pfd, 1, -1, ev); if (f_ret < 0) { - if (errno == EINTR) { - if (ev == NULL || - pth_event_status(ev) != PTH_STATUS_OCCURRED) - { - continue; - } - } f_ret = -1; break; } |