Files
CPP_Core/Core/Base/Check.h
T
2026-06-25 15:44:25 +08:00

8 lines
245 B
C++

#pragma once
#include <string>
bool check_ipv4(const std::string &ip);
bool check_port(long long port);
bool check_ip_netmask_gateway(const std::string &ip, const std::string &netmask,
const std::string &gateway);