Subject: | missing return in case of connection error |
There is a small error in the error-handling.
Within the call of `tcp_connect` the callback must return if there is not fh!
row 117:
`$c_cb->() unless($fh);`
must be
`return $c_cb->() unless($fh);`