HomeSort by relevance Sort by last modified time
    Searched refs:DHCP (Results 1 - 24 of 24) sorted by null

  /external/scapy/scapy/layers/
dhcp.py 7 DHCP (Dynamic Host Configuration Protocol) and BOOTP
53 return DHCP
58 # set BOOTP options to DHCP magic cookie and make rest a payload of DHCP options
291 class DHCP(Packet):
292 name = "DHCP options"
299 bind_layers( BOOTP, DHCP, options=b'c\x82Sc')
309 /BOOTP(chaddr=hw)/DHCP(options=[("message-type","discover"),"end"]),iface=iface,**kargs)
372 if DHCP in req:
374 for op in req[DHCP].option
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
IpConfigStoreTest.java 54 IpConfiguration expectedConfig = new IpConfiguration(IpAssignment.DHCP,
112 case DHCP:
  /frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java 109 case DHCP:
263 // Default is DHCP with no proxy
264 IpAssignment ipAssignment = IpAssignment.DHCP;
354 case DHCP:
358 loge("BUG: Found UNASSIGNED IP on file, use DHCP");
359 config.ipAssignment = IpAssignment.DHCP;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 28 ATTRIBUTE Ascend-DHCP-Maximum-Leases 134 integer
41 ATTRIBUTE Ascend-DHCP-Reply 147 integer
42 ATTRIBUTE Ascend-DHCP-Pool-Number 148 integer
282 VALUE Ascend-DHCP-Reply DHCP-Reply-No 0
283 VALUE Ascend-DHCP-Reply DHCP-Reply-Yes 1
  /external/autotest/client/site_tests/network_DhcpStaticIP/
network_DhcpStaticIP.py 12 """DHCP test which confirms static IP functionality"""
13 # Length of time the lease from the DHCP server is valid.
15 # We'll fill in the subnet and give this address to the client over DHCP.
20 # Time to wait for the DHCP negotiation protocol to complete.
22 # Time to wait after DHCP negotiation completes until service is marked
81 the address provided by the DHCP server is properly added to the
85 @param options dict parameters that were used to configure the DHCP
92 raise error.TestFail('Saved IP address %s is not DHCP address %s' %
123 """Perform a DHCP lease negotiation using handler rules from |rules|,
129 a result of the DHCP negotiation
    [all...]
  /frameworks/base/core/java/android/net/
IpConfiguration.java 37 DHCP,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
AdvancedOptionsFlowUtil.java 102 : IpConfiguration.IpAssignment.DHCP);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
WifiConfigurationHelper.java 150 config.setIpAssignment(IpAssignment.DHCP);
253 config.setIpAssignment(IpAssignment.DHCP);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
WifiConfigControllerTest.java 76 private static final int DHCP = 0;
87 ipSettingsSpinner.setSelection(DHCP);
  /external/autotest/server/hosts/
cros_repair.py 637 DHCP leases file, so we skip it.
  /external/syslinux/core/
pxelinux.asm 89 ; Patch area for adding hardwired DHCP options
212 ; Save hardwired DHCP options. This is done before the C environment
  /frameworks/opt/net/ethernet/java/com/android/server/ethernet/
EthernetTracker.java 399 return new IpConfiguration(IpAssignment.DHCP, ProxySettings.NONE, null, null);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiBackupDataV1Parser.java 517 case DHCP:
SupplicantStaIfaceHal.java 782 config.setIpAssignment(IpConfiguration.IpAssignment.DHCP);
    [all...]
WifiConfigManager.java     [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiBackupRestoreTest.java 79 + "<string name=\"IpAssignment\">DHCP</string>"
117 + "<string name=\"IpAssignment\">DHCP</string>"
291 ipConfiguration.setIpAssignment(IpConfiguration.IpAssignment.DHCP);
344 ipConfiguration.setIpAssignment(IpConfiguration.IpAssignment.DHCP);
422 * Verify that a single PSK network configuration with DHCP ip & PAC proxy settings is
    [all...]
SupplicantStaIfaceHalTest.java 403 assertEquals(IpConfiguration.IpAssignment.DHCP, config.getIpAssignment());
479 assertEquals(IpConfiguration.IpAssignment.DHCP, config.getIpAssignment());
    [all...]
WifiConfigurationTestUtil.java 199 ipAssignment = IpConfiguration.IpAssignment.DHCP;
    [all...]
WifiConfigManagerTest.java     [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 90 private static final int DHCP = 0;
273 mIpSettingsSpinner.setSelection(DHCP);
    [all...]
  /prebuilts/go/darwin-x86/src/net/
net_windows_test.go 317 // DHCP enabled: Yes
327 // DHCP enabled: No
  /prebuilts/go/linux-x86/src/net/
net_windows_test.go 317 // DHCP enabled: Yes
327 // DHCP enabled: No
  /tools/test/connectivity/acts/framework/acts/controllers/
packet_sender.py 309 """Creates a custom DHCP offer packet
351 """Generates a DHCP offer packet.
354 cha_mac: hardware target address for DHCP offer (Optional)
358 # Create DHCP layer
359 dhcp = scapy.DHCP(options=[
366 # Overwrite standard DHCP fields
388 self.packet = ethernet / ip4 / udp / bootp / dhcp
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
XmlUtil.java     [all...]

Completed in 907 milliseconds