Changeset 85195 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Jul 10, 2020 3:12:19 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139168
- Location:
- trunk/src/VBox/Devices/Network/slirp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/bsd/sys/mbuf.h
r85123 r85195 70 70 # endif 71 71 72 # undef bzero 72 73 # define bzero(a1, len) memset((a1), 0, (len)) 73 74 -
trunk/src/VBox/Devices/Network/slirp/libalias/alias.c
r63562 r85195 150 150 # include "alias_mod.h" 151 151 152 #define return(x) \ 152 # if 0 /* Clang 11 does not approve of this */ 153 # define return(x) \ 153 154 do { \ 154 155 Log2(("NAT:ALIAS: %s:%d return(%s:%d)\n", \ … … 156 157 return x; \ 157 158 } while(0) 159 # endif 158 160 #endif /* VBOX */ 159 161 static __inline int -
trunk/src/VBox/Devices/Network/slirp/slirp.h
r82968 r85195 410 410 # define ip_next(ip) (void *)((uint8_t *)(ip) + ((ip)->ip_hl << 2)) 411 411 # define udp_next(udp) (void *)((uint8_t *)&((struct udphdr *)(udp))[1]) 412 # undef bcopy 412 413 # define bcopy(src, dst, len) memcpy((dst), (src), (len)) 414 # undef bcmp 413 415 # define bcmp(a1, a2, len) memcmp((a1), (a2), (len)) 414 416 # define NO_FW_PUNCH
Note:
See TracChangeset
for help on using the changeset viewer.