| 129 | }; |
| 130 | |
| 131 | static int64_t getMillisecond() { |
| 132 | struct timeval now; |
| 133 | gettimeofday(&now, NULL); |
| 134 | return (((int64_t) now.tv_sec) * 1000) + now.tv_usec / 1000; |
| 135 | } |
| 136 | |
| 137 | static std::string sockaddrToString(struct sockaddr_in addr) { |
| 138 | char a[32] = {0}; |
no outgoing calls
no test coverage detected