| 221 | } |
| 222 | |
| 223 | int |
| 224 | createNewSocketToCoordinator(CoordinatorMode mode) |
| 225 | { |
| 226 | string host = ""; |
| 227 | int port = UNINITIALIZED_PORT; |
| 228 | |
| 229 | getCoordHostAndPort(COORD_ANY, &host, &port); |
| 230 | return jalib::JClientSocket(host.c_str(), port).sockfd(); |
| 231 | } |
| 232 | |
| 233 | void init() |
| 234 | { |
no test coverage detected