Files
CPP_Core/Core/Base/Check.h
T
2026-06-16 10:56:40 +08:00

7 lines
215 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);