huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * IP address processing
 * Copyright (c) 2003-2006, Jouni Malinen <j@w1.fi>
 *
 * This software may be distributed under the terms of the BSD license.
 * See README for more details.
 */
 
#include "includes.h"
 
#include "common.h"
#include "ip_addr.h"
 
const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf,
               size_t buflen)
{
   if (buflen == 0 || addr == NULL)
       return NULL;
 
   if (addr->af == AF_INET) {
       os_strlcpy(buf, inet_ntoa(addr->u.v4), buflen);
   } else {
       buf[0] = '\0';
   }
#ifdef CONFIG_IPV6
   if (addr->af == AF_INET6) {
       if (inet_ntop(AF_INET6, &addr->u.v6, buf, buflen) == NULL)
           buf[0] = '\0';
   }
#endif /* CONFIG_IPV6 */
 
   return buf;
}
 
 
int hostapd_parse_ip_addr(const char *txt, struct hostapd_ip_addr *addr)
{
#ifndef CONFIG_NATIVE_WINDOWS
   if (inet_aton(txt, &addr->u.v4)) {
       addr->af = AF_INET;
       return 0;
   }
 
#ifdef CONFIG_IPV6
   if (inet_pton(AF_INET6, txt, &addr->u.v6) > 0) {
       addr->af = AF_INET6;
       return 0;
   }
#endif /* CONFIG_IPV6 */
#endif /* CONFIG_NATIVE_WINDOWS */
 
   return -1;
}