/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | dhcp.c | 55 * In lwip/dhcp.h 83 #include "lwip/dhcp.h" 103 static void dhcp_set_state(struct dhcp *dhcp, u8_t new_state); 107 static err_t dhcp_unfold_reply(struct dhcp *dhcp); 108 static u8_t *dhcp_get_option_ptr(struct dhcp *dhcp, u8_t option_type); 114 static void dhcp_free_reply(struct dhcp *dhcp); 147 struct dhcp *dhcp = netif->dhcp; local 165 struct dhcp *dhcp = netif->dhcp; local 190 struct dhcp *dhcp = netif->dhcp; local 217 struct dhcp *dhcp = netif->dhcp; local 341 struct dhcp *dhcp = netif->dhcp; local 395 struct dhcp *dhcp = netif->dhcp; local 411 struct dhcp *dhcp = netif->dhcp; local 426 struct dhcp *dhcp = netif->dhcp; local 524 struct dhcp *dhcp = netif->dhcp; local 581 struct dhcp *dhcp; local 666 struct dhcp *dhcp = netif->dhcp; local 713 struct dhcp *dhcp = netif->dhcp; local 768 struct dhcp *dhcp = netif->dhcp; local 830 struct dhcp *dhcp = netif->dhcp; local 885 struct dhcp *dhcp = netif->dhcp; local 938 struct dhcp *dhcp = netif->dhcp; local 991 struct dhcp *dhcp = netif->dhcp; local 1022 dhcp_set_state(struct dhcp *dhcp, u8_t new_state) argument 1036 dhcp_option(struct dhcp *dhcp, u8_t option_type, u8_t option_len) argument 1046 dhcp_option_byte(struct dhcp *dhcp, u8_t value) argument 1051 dhcp_option_short(struct dhcp *dhcp, u16_t value) argument 1057 dhcp_option_long(struct dhcp *dhcp, u32_t value) argument 1076 dhcp_unfold_reply(struct dhcp *dhcp) argument 1141 dhcp_free_reply(struct dhcp *dhcp) argument 1162 struct dhcp *dhcp = netif->dhcp; local 1262 struct dhcp *dhcp = netif->dhcp; local 1305 struct dhcp *dhcp = netif->dhcp; local 1320 dhcp_option_trailer(struct dhcp *dhcp) argument 1343 dhcp_get_option_ptr(struct dhcp *dhcp, u8_t option_type) argument [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | dhcp.c | 53 * In lwip/dhcp.h 79 #include "lwip/dhcp.h" 113 * This might be moved into the struct dhcp (not necessarily since 128 @todo: move this into struct dhcp? */ 132 @todo: move this into struct dhcp? */ 140 #define dhcp_option_given(dhcp, idx) (dhcp_rx_options_given[idx] != 0) 141 #define dhcp_got_option(dhcp, idx) (dhcp_rx_options_given[idx] = 1) 142 #define dhcp_clear_option(dhcp, idx) (dhcp_rx_options_given[idx] = 0) 143 #define dhcp_clear_all_options(dhcp) (memset(dhcp_rx_options_given, 0, sizeof(dhcp_rx_options_given))) 144 #define dhcp_get_option_value(dhcp, id 199 struct dhcp *dhcp = netif->dhcp; local 227 struct dhcp *dhcp = netif->dhcp; local 254 struct dhcp *dhcp = netif->dhcp; local 285 struct dhcp *dhcp = netif->dhcp; local 404 struct dhcp *dhcp = netif->dhcp; local 467 struct dhcp *dhcp = netif->dhcp; local 489 struct dhcp *dhcp = netif->dhcp; local 510 struct dhcp *dhcp = netif->dhcp; local 585 dhcp_set_struct(struct netif *netif, struct dhcp *dhcp) argument 629 struct dhcp *dhcp; local 712 struct dhcp dhcp; local 766 struct dhcp *dhcp = netif->dhcp; local 832 struct dhcp *dhcp = netif->dhcp; local 872 struct dhcp *dhcp = netif->dhcp; local 928 struct dhcp *dhcp; local 1022 struct dhcp *dhcp = netif->dhcp; local 1076 struct dhcp *dhcp = netif->dhcp; local 1126 struct dhcp *dhcp = netif->dhcp; local 1168 struct dhcp *dhcp = netif->dhcp; local 1223 struct dhcp *dhcp; local 1254 dhcp_set_state(struct dhcp *dhcp, u8_t new_state) argument 1269 dhcp_option(struct dhcp *dhcp, u8_t option_type, u8_t option_len) argument 1280 dhcp_option_byte(struct dhcp *dhcp, u8_t value) argument 1287 dhcp_option_short(struct dhcp *dhcp, u16_t value) argument 1295 dhcp_option_long(struct dhcp *dhcp, u32_t value) argument 1306 dhcp_option_hostname(struct dhcp *dhcp, struct netif *netif) argument 1338 dhcp_parse_reply(struct dhcp *dhcp, struct pbuf *p) argument 1541 struct dhcp *dhcp = netif->dhcp; local 1642 dhcp_create_msg(struct netif *netif, struct dhcp *dhcp, u8_t message_type) argument 1736 dhcp_delete_msg(struct dhcp *dhcp) argument 1757 dhcp_option_trailer(struct dhcp *dhcp) argument [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/ |
H A D | dhcp.c | 41 #include <ipxe/dhcp.h> 54 static int dhcp_tx ( struct dhcp_session *dhcp ); 98 .name = "dhcp-server", 164 * @v dhcp DHCP session 168 int ( * tx ) ( struct dhcp_session *dhcp, 173 * @v dhcp DHCP session 179 void ( * rx ) ( struct dhcp_session *dhcp, 185 * @v dhcp DHCP session 187 void ( * expired ) ( struct dhcp_session *dhcp ); 254 struct dhcp_session *dhcp local 268 dhcp_finished( struct dhcp_session *dhcp, int rc ) argument 284 dhcp_set_state( struct dhcp_session *dhcp, struct dhcp_session_state *state ) argument 332 dhcp_discovery_tx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt __unused, struct sockaddr_in *peer ) argument 354 dhcp_discovery_rx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer, uint8_t msgtype, struct in_addr server_id ) argument 476 dhcp_request_tx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer ) argument 513 dhcp_request_rx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer, uint8_t msgtype, struct in_addr server_id ) argument 613 dhcp_proxy_tx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer ) argument 643 dhcp_proxy_rx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer, uint8_t msgtype, struct in_addr server_id ) argument 714 dhcp_pxebs_tx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer ) argument 745 dhcp_pxebs_accept( struct dhcp_session *dhcp, struct in_addr bs ) argument 773 dhcp_pxebs_rx( struct dhcp_session *dhcp, struct dhcp_packet *dhcppkt, struct sockaddr_in *peer, uint8_t msgtype, struct in_addr server_id ) argument 1144 dhcp_deliver( struct dhcp_session *dhcp, struct io_buffer *iobuf, struct xfer_metadata *meta ) argument 1224 struct dhcp_session *dhcp = local 1291 struct dhcp_session *dhcp; local 1347 pxebs_list( struct dhcp_session *dhcp, void *raw, size_t raw_len, struct in_addr *ip ) argument 1396 struct dhcp_session *dhcp; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/efi/ipxe/ |
H A D | dhcp_arch.h | 29 #include <ipxe/dhcp.h>
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/pcbios/ipxe/ |
H A D | dhcp_arch.h | 29 #include <ipxe/dhcp.h>
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/include/linux/ipxe/ |
H A D | dhcp_arch.h | 29 #include <ipxe/dhcp.h>
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86_64/include/efi/ipxe/ |
H A D | dhcp_arch.h | 29 #include <ipxe/dhcp.h>
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/usr/ |
H A D | dhcpmgmt.h | 14 extern int dhcp ( struct net_device *netdev );
|
/vbox/src/VBox/Devices/PC/ipxe/src/usr/ |
H A D | dhcpmgmt.c | 25 #include <ipxe/dhcp.h> 39 int dhcp ( struct net_device *netdev ) { function
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | dhcp.h | 29 struct dhcp struct 52 ip_addr_t server_ip_addr; /* dhcp server address that offered this lease */ 108 void dhcp_set_struct(struct netif *netif, struct dhcp *dhcp); 109 /** Remove a struct dhcp previously set to the netif using dhcp_set_struct() */ 110 #define dhcp_remove_struct(netif) do { (netif)->dhcp = NULL; } while(0)
|
H A D | netif.h | 47 struct dhcp; 71 * by dhcp/autoip when an address has been assigned. 209 struct dhcp *dhcp; member in struct:netif
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxeparent/ |
H A D | pxeparent_dhcp.c | 22 #include <ipxe/dhcp.h>
|
H A D | pxeparent.c | 21 #include <ipxe/dhcp.h>
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | dhcppkt.h | 12 #include <ipxe/dhcp.h>
|
H A D | features.h | 6 #include <ipxe/dhcp.h>
|
H A D | ibft.h | 177 struct ibft_ipaddr dhcp; member in struct:ibft_nic
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | cachedhcp.c | 24 #include <ipxe/dhcp.h> 65 * with a network device when "dhcp netX" is performed for that
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | netif.h | 44 # include "lwip/dhcp.h" 98 struct dhcp *dhcp; member in struct:netif
|
/vbox/src/VBox/Main/src-server/ |
H A D | DHCPServerImpl.cpp | 53 DHCPServerRunner dhcp; member in struct:DHCPServer::Data 399 m->dhcp.setOption(NetworkServiceRunner::kNsrKeyNeedMain, "on"); 554 m->dhcp.setOption(NetworkServiceRunner::kNsrKeyNetwork, aNetworkName.c_str()); 557 m->dhcp.setOption(NetworkServiceRunner::kNsrTrunkName, aTrunkName.c_str()); 559 m->dhcp.setOption(NetworkServiceRunner::kNsrKeyTrunkType, aTrunkType.c_str()); 569 m->dhcp.setOption(NetworkServiceRunner::kNsrMacAddress, strMAC); 570 m->dhcp.setOption(NetworkServiceRunner::kNsrIpAddress, Utf8Str(m->IPAddress).c_str()); 571 m->dhcp.setOption(NetworkServiceRunner::kNsrIpNetmask, Utf8Str(m->GlobalDhcpOptions[DhcpOpt_SubnetMask].text).c_str()); 572 m->dhcp.setOption(DHCPServerRunner::kDsrKeyLowerIp, Utf8Str(m->lowerIP).c_str()); 573 m->dhcp [all...] |
/vbox/src/VBox/NetworkServices/NetLib/ |
H A D | utils.h | 47 inline int findDhcpServer(const ComVirtualBoxPtr& vbox, const std::string& name, ComDhcpServerPtr& dhcp) argument 50 dhcp.asOutParam());
|
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/ |
H A D | UIGlobalSettingsNetwork.cpp | 795 CDHCPServer dhcp = vbox.FindDHCPServerByNetworkName(iface.GetNetworkName()); 796 if (dhcp.isNull()) 801 dhcp = vbox.FindDHCPServerByNetworkName(iface.GetNetworkName()); 803 AssertReturnVoid(!dhcp.isNull()); 830 CDHCPServer dhcp = vbox.FindDHCPServerByNetworkName(iface.GetNetworkName()); local 831 if (vbox.isOk() && !dhcp.isNull()) 833 vbox.RemoveDHCPServer(dhcp); 1048 CDHCPServer dhcp = vboxGlobal().virtualBox().FindDHCPServerByNetworkName(iface.GetNetworkName()); local 1049 if (dhcp.isNull()) 1058 dhcp 1117 CDHCPServer dhcp = vbox.FindDHCPServerByNetworkName(iface.GetNetworkName()); local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/ |
H A D | dhcp_cmd.c | 43 /** "dhcp" command descriptor */ 49 * Execute "dhcp" command for a network device 57 if ( ( rc = dhcp ( netdev ) ) != 0 ) { 71 * The "dhcp" command 130 .name = "dhcp",
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageNATNetwork.cpp | 74 { "--dhcp", 'h', RTGETOPT_REQ_BOOL }, 111 int dhcp = -1; local 166 if (dhcp != -1) 167 return errorSyntax(USAGE_NATNETWORK, "You can specify --dhcp only once."); 168 dhcp = ValueUnion.f; 330 if (dhcp >= 0) 332 CHECK_ERROR(net, COMSETTER(NeedDhcpServer) ((BOOL)dhcp));
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | clientcert.c | 24 #include <ipxe/dhcp.h>
|
H A D | rootcert.c | 26 #include <ipxe/dhcp.h>
|