summaryrefslogtreecommitdiff
path: root/netio.c
diff options
context:
space:
mode:
Diffstat (limited to 'netio.c')
-rw-r--r--netio.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/netio.c b/netio.c
index 9aa7ae5..42d1b32 100644
--- a/netio.c
+++ b/netio.c
@@ -177,6 +177,13 @@ struct dropbear_progress_connection *connect_remote(const char* remotehost, cons
return c;
}
+void remove_connect_pending() {
+ while (ses.conn_pending.first) {
+ struct dropbear_progress_connection *c = ses.conn_pending.first->item;
+ remove_connect(c, ses.conn_pending.first);
+ }
+}
+
void set_connect_fds(fd_set *writefd) {
m_list_elem *iter;