Changeset 99775 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- May 12, 2023 12:21:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157370
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r98121 r99775 1580 1580 * @param fOn New LED state. 1581 1581 */ 1582 void virtioNetR3SetReadLed(PVIRTIONETR3 pThisR3, bool fOn)1582 static void virtioNetR3SetReadLed(PVIRTIONETR3 pThisR3, bool fOn) 1583 1583 { 1584 1584 if (fOn) … … 1595 1595 * @param fOn New LED state. 1596 1596 */ 1597 void virtioNetR3SetWriteLed(PVIRTIONETR3 pThisR3, bool fOn)1597 static void virtioNetR3SetWriteLed(PVIRTIONETR3 pThisR3, bool fOn) 1598 1598 { 1599 1599 if (fOn) -
trunk/src/VBox/Devices/Network/DrvCloudTunnel.cpp
r98103 r99775 60 60 # define INVALID_SOCKET -1 61 61 # define SOCKET_ERROR -1 62 intWSAGetLastError() { return errno; }62 DECLINLINE(int) WSAGetLastError() { return errno; } 63 63 #endif 64 64 … … 1265 1265 1266 1266 1267 DECL_NOTHROW(void) drvCloudTunnelSshLogCallback(int priority, const char *function, const char *buffer, void *userdata)1267 static DECL_NOTHROW(void) drvCloudTunnelSshLogCallback(int priority, const char *function, const char *buffer, void *userdata) 1268 1268 { 1269 1269 PDRVCLOUDTUNNEL pThis = (PDRVCLOUDTUNNEL)userdata; -
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r99739 r99775 972 972 973 973 974 #if 0 /* unused */ 974 975 /** 975 976 * Function called by slirp to check if it's possible to feed incoming data to the network port. … … 983 984 } 984 985 985 void slirp_push_recv_thread(void *pvUser)986 static void slirp_push_recv_thread(void *pvUser) 986 987 { 987 988 PDRVNAT pThis = (PDRVNAT)pvUser; … … 989 990 drvNATUrgRecvWakeup(pThis->pDrvIns, pThis->pUrgRecvThread); 990 991 } 992 #endif 991 993 992 994 void slirp_urg_output(void *pvUser, struct mbuf *m, const uint8_t *pu8Buf, int cb)
Note:
See TracChangeset
for help on using the changeset viewer.