| 27 | namespace phxsql { |
| 28 | |
| 29 | string Utils::GetIP(const uint32_t &svrid) { |
| 30 | char tmp[128] = { 0 }; |
| 31 | sprintf(tmp, "%u.%u.%u.%u", (svrid >> 24) & 0xff, (svrid >> 16) & 0xff, (svrid >> 8) & 0xff, svrid & 0xff); |
| 32 | return tmp; |
| 33 | } |
| 34 | |
| 35 | uint32_t Utils::GetSvrID(const string &ip) { |
| 36 | uint32_t svrid = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected