diff options
author | houseofkodai <karthik@houseofkodai.in> | 2017-05-01 08:26:15 +0530 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-01-26 00:28:25 +0800 |
commit | 9c7ecf6d14a82c1b1a97e1b4a328460ba8762299 (patch) | |
tree | a4cce47cf5ff76f239ff832965822c2e0164cd05 /netio.h | |
parent | 917722257d11ea7a33990c170542aeff2b6061b1 (diff) |
cli_bind_address_connect
* replaces -b dummy option in dbclient to be similar with openssh -b option
* useful in multi-wan connections
Diffstat (limited to 'netio.h')
-rw-r--r-- | netio.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ typedef void(*connect_callback)(int result, int sock, void* data, const char* er /* Always returns a progress connection, if it fails it will call the callback at a later point */ struct dropbear_progress_connection * connect_remote (const char* remotehost, const char* remoteport, - connect_callback cb, void *cb_data); + connect_callback cb, void *cb_data, char* bind_address); /* Sets up for select() */ void set_connect_fds(fd_set *writefd); |