diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-02-28 23:15:23 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-02-28 23:15:23 +0800 |
commit | 89c0b2a6d863e54bd0253355146f09b92edeccda (patch) | |
tree | 8bbc278b055fd573a9d40ba171d9031626551371 /netio.c | |
parent | 31e379c300c69f1a628c74a3226346a48416e568 (diff) |
Add cleanup
--HG--
branch : fastopen
Diffstat (limited to 'netio.c')
-rw-r--r-- | netio.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |