Home | History | Annotate | Download | only in BdsLib

Lines Matching defs:Dhcp4

25 #include <Protocol/Dhcp4.h>

32 /* Type and defines to set up the DHCP4 options */
1052 EFI_DHCP4_PROTOCOL *Dhcp4;
1073 Dhcp4 = NULL;
1082 // Using the DHCP4 Service Binding Protocol, create a child handle of the DHCP4 service and
1083 // install the DHCP4 protocol on it. Then, open the DHCP protocol.
1095 (VOID **) &Dhcp4,
1102 Print (L"Unable to open DHCP4 protocol\n");
1134 // Configure the DHCP4, all default settings. It is acceptable for the configuration to
1136 // has been done by another instance of the DHCP4 protocol or that the DHCP configuration
1148 Status = Dhcp4->Configure (Dhcp4, &Dhcp4CfgData);
1151 Print (L"Error while configuring the DHCP4 protocol\n");
1160 Status = Dhcp4->Start (Dhcp4, NULL);
1170 Status = Dhcp4->GetModeData (Dhcp4, &Dhcp4Mode);
1277 if (Dhcp4 != NULL) {
1279 Dhcp4->Stop (Dhcp4);