diff options
author | Matt Johnston <matt@ucc.asn.au> | 2021-03-05 21:13:20 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2021-03-05 21:13:20 +0800 |
commit | 3c2f113a783651aae7612dcffdc8e74a9db69702 (patch) | |
tree | 47b4f214d863ba7c56e1c7803ec10d5b8d5964ce /channel.h | |
parent | f193e95a3ecd9e1c9ecf4b594517f3326e40f5e5 (diff) |
Return errstring on connect failure
Diffstat (limited to 'channel.h')
-rw-r--r-- | channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ struct ChanType { void (*cleanup)(const struct Channel*); }; -/* Callback for connect_remote */ +/* Callback for connect_remote. errstring may be NULL if result == DROPBEAR_SUCCESS */ void channel_connect_done(int result, int sock, void* user_data, const char* errstring); void chaninitialise(const struct ChanType *chantypes[]); |