Changeset 22671 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Sep 1, 2009 2:31:41 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 51772
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r22664 r22671 515 515 link_up = 1; 516 516 517 bootp_dhcp_init(pData); 517 rc = bootp_dhcp_init(pData); 518 if (rc != 0) 519 { 520 LogRel(("NAT: DHCP server initialization was falled\n")) 521 return VINF_NAT_DNS; 522 } 518 523 debug_init(); 519 524 if_init(pData); … … 1536 1541 static uint32_t find_guest_ip(PNATState pData, const uint8_t *eth_addr) 1537 1542 { 1538 int i;1539 1543 uint32_t ip = INADDR_ANY; 1540 1544 if (eth_addr == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.