mirror of https://gitea.it/1414codeforge/ubgpsuite
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
578 B
C
31 lines
578 B
C
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/**
|
|
* \file sys/ip_windows.c
|
|
*
|
|
* System specific Internet Protocol functionality implementation over Windows.
|
|
*
|
|
* \copyright The DoubleFourteen Code Forge (C) All Rights Reserved
|
|
* \author Lorenzo Cogotti
|
|
*/
|
|
|
|
#include "sys/ip.h"
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
Judgement Ipv4_StringToAdr(const char *s, Ipv4adr *dest)
|
|
{
|
|
if (InetPtonA(AF_INET, s, dest->bytes) != 1)
|
|
return NG;
|
|
|
|
return OK;
|
|
}
|
|
|
|
Judgement Ipv6_StringToAdr(const char *s, Ipv6adr *dest)
|
|
{
|
|
if (InetPtonA(AF_INET6, s, dest->bytes) != 1)
|
|
return NG;
|
|
|
|
return OK;
|
|
}
|