Changeset 57393 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Aug 17, 2015 3:02:05 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevINIP.cpp
r57358 r57393 146 146 * Internal Functions * 147 147 *********************************************************************************************************************************/ 148 static DECLCALLBACK(err_t)devINIPOutput(struct netif *netif, struct pbuf *p, struct ip_addr *ipaddr);149 static DECLCALLBACK(err_t)devINIPOutputRaw(struct netif *netif, struct pbuf *p);150 static DECLCALLBACK(err_t)devINIPInterface(struct netif *netif);148 static err_t devINIPOutput(struct netif *netif, struct pbuf *p, struct ip_addr *ipaddr); 149 static err_t devINIPOutputRaw(struct netif *netif, struct pbuf *p); 150 static err_t devINIPInterface(struct netif *netif); 151 151 152 152 … … 160 160 * @param ipaddr Destination IP address. 161 161 */ 162 static DECLCALLBACK(err_t)devINIPOutput(struct netif *netif, struct pbuf *p, struct ip_addr *ipaddr)162 static err_t devINIPOutput(struct netif *netif, struct pbuf *p, struct ip_addr *ipaddr) 163 163 { 164 164 err_t lrc; … … 179 179 * @param p Frame data. 180 180 */ 181 static DECLCALLBACK(err_t)devINIPOutputRaw(struct netif *netif, struct pbuf *p)181 static err_t devINIPOutputRaw(struct netif *netif, struct pbuf *p) 182 182 { 183 183 int rc = VINF_SUCCESS; … … 251 251 * @param netif Interface to configure. 252 252 */ 253 static DECLCALLBACK(err_t)devINIPInterface(struct netif *netif)253 static err_t devINIPInterface(struct netif *netif) 254 254 { 255 255 LogFlow(("%s: netif=%p\n", __FUNCTION__, netif)); -
trunk/src/VBox/Devices/Network/lwip-new/vbox/VBoxLwipCore.cpp
r56292 r57393 66 66 * @note: this function executes on TCPIP thread. 67 67 */ 68 static DECLCALLBACK(void)lwipCoreUserCallback(void *pvArg)68 static void lwipCoreUserCallback(void *pvArg) 69 69 { 70 70 LogFlowFunc(("ENTER: pvArg:%p\n", pvArg)); … … 83 83 * @note: this function executes on TCPIP thread. 84 84 */ 85 static DECLCALLBACK(void)lwipCoreInitDone(void *pvArg)85 static void lwipCoreInitDone(void *pvArg) 86 86 { 87 87 LogFlowFunc(("ENTER: pvArg:%p\n", pvArg)); … … 97 97 * @note: this function executes on TCPIP thread. 98 98 */ 99 static DECLCALLBACK(void)lwipCoreFiniDone(void *pvArg)99 static void lwipCoreFiniDone(void *pvArg) 100 100 { 101 101 LogFlowFunc(("ENTER: pvArg:%p\n", pvArg));
Note:
See TracChangeset
for help on using the changeset viewer.