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