Changeset 22021 in vbox
- Timestamp:
- Aug 6, 2009 10:45:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r22020 r22021 190 190 191 191 static void acivate_port_forwarding(PNATState, struct ethhdr *); 192 static in_addr_t find_guest_ip(PNATState, uint8_t *);192 static uint32_t find_guest_ip(PNATState, uint8_t *); 193 193 194 194 static const uint8_t special_ethaddr[6] = … … 1527 1527 * @todo see rt_lookup_in_cache 1528 1528 */ 1529 static in_addr_t find_guest_ip(PNATState pData, uint8_t *eth_addr)1529 static uint32_t find_guest_ip(PNATState pData, uint8_t *eth_addr) 1530 1530 { 1531 1531 int i; … … 1566 1566 struct in_addr alias; 1567 1567 int rc; 1568 in_addr_t guest_addr; /* need to understand if we already give address to guest */1568 uint32_t guest_addr; /* need to understand if we already give address to guest */ 1569 1569 1570 1570 if (rule->activated)
Note:
See TracChangeset
for help on using the changeset viewer.