Files
CPP_Core/Core/Base/Check.h
T
2026-06-29 09:40:55 +08:00

9 lines
260 B
C++

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