Changeset 26610 in vbox
- Timestamp:
- Feb 17, 2010 2:12:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/tcp.cpp
r26590 r26610 43 43 # include <netinet/tcp.h> 44 44 # include <arpa/inet.h> 45 # ifdef IPRT_ TCP_IN645 # ifdef IPRT_WITH_TCPIP_V6 46 46 # include <netinet6/in6.h> 47 47 # endif … … 919 919 struct sockaddr Addr; 920 920 struct sockaddr_in Ipv4; 921 #ifdef IPRT_ TCP_IN6921 #ifdef IPRT_WITH_TCPIP_V6 922 922 struct sockaddr_in6 Ipv6; 923 923 #endif … … 942 942 pAddr->uAddr.IPv4.u = u.Ipv4.sin_addr.s_addr; 943 943 } 944 #ifdef IPRT_ TCP_IN6944 #ifdef IPRT_WITH_TCPIP_V6 945 945 else if ( cbAddr == sizeof(struct sockaddr_in6) 946 946 && u.Addr.sa_family == AF_INET6)
Note:
See TracChangeset
for help on using the changeset viewer.