9 lines
260 B
C++
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); |