Files
CPP_Core/Core/Base/Check.h
T
2026-07-24 10:54:45 +08:00

8 lines
259 B
C++

#pragma once
#include <string>
#include <string_view>
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);