Changeset 85193 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Jul 10, 2020 3:09:57 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139165
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevINIP.cpp
r85121 r85193 131 131 * using .a libraries for now. 132 132 */ 133 static const PFNRTg_pDevINILinkHack[] =134 { 135 (PFNRT)lwip_socket,136 (PFNRT)lwip_close,137 (PFNRT)lwip_setsockopt,138 (PFNRT)lwip_recv,139 (PFNRT)lwip_send,140 (PFNRT)lwip_select133 static const struct CLANG11WEIRDNESS { PFNRT pfn; } g_pDevINILinkHack[] = 134 { 135 { (PFNRT)lwip_socket }, 136 { (PFNRT)lwip_close }, 137 { (PFNRT)lwip_setsockopt }, 138 { (PFNRT)lwip_recv }, 139 { (PFNRT)lwip_send }, 140 { (PFNRT)lwip_select }, 141 141 }; 142 142
Note:
See TracChangeset
for help on using the changeset viewer.