1
This commit is contained in:
11
linux_service/tools.cpp
Normal file
11
linux_service/tools.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "tools.h"
|
||||
namespace tools {
|
||||
auto cover_ip(unsigned int ip) -> std::string {
|
||||
std::string ip_str;
|
||||
ip_str = std::to_string(ip & 0xff) + "." +
|
||||
std::to_string((ip >> 8) & 0xff) + "." +
|
||||
std::to_string((ip >> 16) & 0xff) + "." +
|
||||
std::to_string((ip >> 24) & 0xff);
|
||||
return ip_str;
|
||||
}
|
||||
} // namespace tools
|
||||
Reference in New Issue
Block a user