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
289
protected DhcpPacket(int transId, short secs, Inet4Address
clientIp
, Inet4Address yourIp,
294
mClientIp =
clientIp
;
685
Inet4Address
clientIp
;
800
clientIp
= (Inet4Address) Inet4Address.getByAddress(ipv4addr);
[
all
...]
/frameworks/base/services/tests/servicestests/src/android/net/dhcp/
DhcpPacketTest.java
55
public TestDhcpPacket(byte type, Inet4Address
clientIp
, Inet4Address yourIp) {
56
super(0xdeadbeef, (short) 0,
clientIp
, yourIp, INADDR_ANY, INADDR_ANY,
202
private void checkIpAddress(String expected, Inet4Address
clientIp
, Inet4Address yourIp,
204
checkIpAddress(expected, DHCP_MESSAGE_TYPE_OFFER,
clientIp
, yourIp, netmaskBytes);
205
checkIpAddress(expected, DHCP_MESSAGE_TYPE_ACK,
clientIp
, yourIp, netmaskBytes);
209
Inet4Address
clientIp
, Inet4Address yourIp,
211
ByteBuffer packet = new TestDhcpPacket(type,
clientIp
, yourIp)
236
//
ClientIP
is used iff YourIP is not present.
Completed in 36 milliseconds