| 66 | class GlobalSocketCreator : public SocketCreator { |
| 67 | public: |
| 68 | int CreateSocket(const SocketOptions& opt, SocketId* id) override { |
| 69 | SocketOptions sock_opt = opt; |
| 70 | sock_opt.health_check_interval_s = FLAGS_health_check_interval; |
| 71 | return get_client_side_messenger()->Create(sock_opt, id); |
| 72 | } |
| 73 | }; |
| 74 | |
| 75 | static void CreateClientSideSocketMap() { |