Package jpcap
Class NetworkInterfaceAddress
java.lang.Object
jpcap.NetworkInterfaceAddress
This class represents a network address assigned to a network interface.
- Author:
- kfujii
-
Field Summary
FieldsModifier and TypeFieldDescriptionAddress of the network interfaceBroadcast address of the network interface.Destination address of the network interface (for P2P connection).Subnet mask of the network interface -
Constructor Summary
ConstructorsConstructorDescriptionNetworkInterfaceAddress
(byte[] address, byte[] subnet, byte[] broadcast, byte[] destination) -
Method Summary
-
Field Details
-
address
Address of the network interface -
subnet
Subnet mask of the network interface -
broadcast
Broadcast address of the network interface. May be null. -
destination
Destination address of the network interface (for P2P connection). May be null.
-
-
Constructor Details
-
NetworkInterfaceAddress
public NetworkInterfaceAddress(byte[] address, byte[] subnet, byte[] broadcast, byte[] destination)
-