Changeset 22542 in vbox
- Timestamp:
- Aug 28, 2009 6:52:50 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r22541 r22542 189 189 #define LOG_NAT_SOCK(so, proto, winevent, r_fdset, w_fdset, x_fdset) DO_LOG_NAT_SOCK((so), proto, (winevent), r_fdset, w_fdset, x_fdset) 190 190 191 static void ac ivate_port_forwarding(PNATState, struct ethhdr *);191 static void activate_port_forwarding(PNATState, struct ethhdr *); 192 192 static uint32_t find_guest_ip(PNATState, uint8_t *); 193 193 … … 1448 1448 1449 1449 if (pData->port_forwarding_activated == 0) 1450 ac ivate_port_forwarding(pData, mtod(m, struct ethhdr *));1450 activate_port_forwarding(pData, mtod(m, struct ethhdr *)); 1451 1451 1452 1452 proto = ntohs(*(uint16_t *)(pkt + 12)); … … 1547 1547 * @todo finish this for service case 1548 1548 */ 1549 static void ac ivate_port_forwarding(PNATState pData, struct ethhdr *ethdr)1549 static void activate_port_forwarding(PNATState pData, struct ethhdr *ethdr) 1550 1550 { 1551 1551 struct port_forward_rule *rule = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.