| 90 | } |
| 91 | |
| 92 | int |
| 93 | hstcpcli::reconnect() |
| 94 | { |
| 95 | clear_error(); |
| 96 | close(); |
| 97 | std::string err; |
| 98 | if (socket_connect(fd, sargs, err) != 0) { |
| 99 | set_error(-1, err); |
| 100 | } |
| 101 | return error_code; |
| 102 | } |
| 103 | |
| 104 | bool |
| 105 | hstcpcli::stable_point() |
nothing calls this directly
no test coverage detected