Changeset 99775 in vbox for trunk/src/VBox/Runtime/common/net
- Timestamp:
- May 12, 2023 12:21:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157370
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/net/netaddrstr2.cpp
r98103 r99775 50 50 51 51 52 DECLHIDDEN(int)rtNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr,53 52 static int rtNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr, 53 char **ppszNext) 54 54 { 55 55 char *pszNext; … … 352 352 * proper (with possible embedded IPv4). 353 353 */ 354 DECLHIDDEN(int)rtNetStrToIPv6AddrBase(const char *pcszAddr, PRTNETADDRIPV6 pAddrResult,355 354 static int rtNetStrToIPv6AddrBase(const char *pcszAddr, PRTNETADDRIPV6 pAddrResult, 355 char **ppszNext) 356 356 { 357 357 RTNETADDRIPV6 ipv6; … … 488 488 489 489 490 DECLHIDDEN(int)rtNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr,491 490 static int rtNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr, 491 char **ppszZone, char **ppszNext) 492 492 { 493 493 char *pszNext, *pszZone;
Note:
See TracChangeset
for help on using the changeset viewer.