Changeset 58438 in vbox for trunk/include/iprt/net.h
- Timestamp:
- Oct 27, 2015 4:30:34 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103701
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/net.h
r57926 r58438 71 71 72 72 /** 73 * Tests if the given string is a wildcard IPv4 address. 74 * 75 * @returns boolean. 76 * @param pcszAddr String which may be an IPv4 address. 77 */ 78 RTDECL(bool) RTNetStrIsIPv4AddrAny(const char *pcszAddr); 79 80 /** 73 81 * Parses dotted-decimal IPv4 address into RTNETADDRIPV4 representation. 74 82 * … … 112 120 */ 113 121 RTDECL(bool) RTNetIsIPv6AddrStr(const char *pszAddress); 122 123 /** 124 * Tests if the given string is a wildcard IPv6 address. 125 * 126 * @returns @c true if it is, @c false if not. 127 * @param pszAddress String which may be an IPv6 address. 128 */ 129 RTDECL(bool) RTNetStrIsIPv6AddrAny(const char *pszAddress); 114 130 115 131 /**
Note:
See TracChangeset
for help on using the changeset viewer.