OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clientIp
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/services/net/java/android/net/dhcp/
DhcpDeclinePacket.java
29
DhcpDeclinePacket(int transId, short secs, Inet4Address
clientIp
, Inet4Address yourIp,
32
super(transId, secs,
clientIp
, yourIp, nextIp, relayIp, clientMac, false);
DhcpInformPacket.java
29
DhcpInformPacket(int transId, short secs, Inet4Address
clientIp
, Inet4Address yourIp,
32
super(transId, secs,
clientIp
, yourIp, nextIp, relayIp, clientMac, false);
DhcpRequestPacket.java
31
DhcpRequestPacket(int transId, short secs, Inet4Address
clientIp
, byte[] clientMac,
33
super(transId, secs,
clientIp
, INADDR_ANY, INADDR_ANY, INADDR_ANY, clientMac, broadcast);
DhcpAckPacket.java
33
Inet4Address
clientIp
, Inet4Address yourIp, byte[] clientMac) {
34
super(transId, secs,
clientIp
, yourIp, serverAddress, INADDR_ANY, clientMac, broadcast);
DhcpOfferPacket.java
35
Inet4Address
clientIp
, Inet4Address yourIp, byte[] clientMac) {
36
super(transId, secs,
clientIp
, yourIp, INADDR_ANY, INADDR_ANY, clientMac, broadcast);
DhcpNakPacket.java
29
DhcpNakPacket(int transId, short secs, Inet4Address
clientIp
, Inet4Address yourIp,
DhcpPacket.java
311
protected DhcpPacket(int transId, short secs, Inet4Address
clientIp
, Inet4Address yourIp,
316
mClientIp =
clientIp
;
734
Inet4Address
clientIp
;
868
clientIp
= (Inet4Address) Inet4Address.getByAddress(ipv4addr);
[
all
...]
/frameworks/base/services/tests/servicestests/src/android/net/dhcp/
DhcpPacketTest.java
59
public TestDhcpPacket(byte type, Inet4Address
clientIp
, Inet4Address yourIp) {
60
super(0xdeadbeef, (short) 0,
clientIp
, yourIp, INADDR_ANY, INADDR_ANY,
214
private void checkIpAddress(String expected, Inet4Address
clientIp
, Inet4Address yourIp,
216
checkIpAddress(expected, DHCP_MESSAGE_TYPE_OFFER,
clientIp
, yourIp, netmaskBytes);
217
checkIpAddress(expected, DHCP_MESSAGE_TYPE_ACK,
clientIp
, yourIp, netmaskBytes);
221
Inet4Address
clientIp
, Inet4Address yourIp,
223
ByteBuffer packet = new TestDhcpPacket(type,
clientIp
, yourIp)
248
//
ClientIP
is used iff YourIP is not present.
[
all
...]
Completed in 337 milliseconds