|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.net.NetMessage
jist.swans.net.NetMessage.Ip
public static class NetMessage.Ip
IPv4 network packet.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class jist.swans.net.NetMessage |
---|
NetMessage.Ip, NetMessage.IpOption, NetMessage.IpOptionSourceRoute |
Field Summary | |
---|---|
static int |
BASE_SIZE
Fixed IP packet size. |
private NetAddress |
dst
ip packet destination address. |
private short |
fragOffset
ip packet fragment offset. |
private boolean |
frozen
immutable bit. |
private short |
id
ip packet identification. |
private static short |
nextId
Next identification number to use. |
private Message |
payload
ip packet payload. |
private byte |
priority
ip packet priority level. |
private short |
protocol
ip packet protocol, such as TCP, UDP, etc. |
private NetAddress |
src
ip packet source address. |
private NetMessage.IpOptionSourceRoute |
srcRoute
source route. |
private byte |
ttl
ip packet time-to-live. |
Fields inherited from interface jist.swans.misc.Message |
---|
NULL |
Constructor Summary | |
---|---|
NetMessage.Ip(Message payload,
NetAddress src,
NetAddress dst,
short protocol,
byte priority,
byte ttl)
Create new IPv4 packet with default id. |
|
NetMessage.Ip(Message payload,
NetAddress src,
NetAddress dst,
short protocol,
byte priority,
byte ttl,
short id,
short fragOffset)
Create new IPv4 packet. |
Method Summary | |
---|---|
NetMessage.Ip |
copy()
Make copy of packet, usually in order to modify it. |
void |
decTTL()
Create indentical packet with decremented TTL. |
NetMessage.Ip |
freeze()
Render packet immutable. |
void |
getBytes(byte[] b,
int offset)
Store packet into byte array. |
NetAddress |
getDst()
Return packet destination. |
short |
getFragOffset()
Return packet fragmentation offset. |
short |
getId()
Return packet identification. |
Message |
getPayload()
Return packet payload. |
byte |
getPriority()
Return packet priority. |
short |
getProtocol()
Return packet protocol. |
int |
getSize()
Return packet size or Constants.ZERO_WIRE_SIZE. |
NetAddress[] |
getSourceRoute()
Return source route. |
int |
getSourceRoutePointer()
Return source route pointer. |
NetAddress |
getSrc()
Return packet source. |
byte |
getTTL()
Return packet time-to-live. |
boolean |
hasSourceRoute()
Returns whether packet contains source route. |
boolean |
isFrozen()
Whether packet is immutable. |
void |
setSourceRoute(NetMessage.IpOptionSourceRoute srcRoute)
Set source route. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int BASE_SIZE
private boolean frozen
private NetAddress src
private NetAddress dst
private Message payload
private byte priority
private short protocol
private byte ttl
private short id
private short fragOffset
private NetMessage.IpOptionSourceRoute srcRoute
private static short nextId
Constructor Detail |
---|
public NetMessage.Ip(Message payload, NetAddress src, NetAddress dst, short protocol, byte priority, byte ttl, short id, short fragOffset)
payload
- packet payloadsrc
- packet source addressdst
- packet destination addressprotocol
- packet protocolpriority
- packet priorityttl
- packet time-to-liveid
- packet identificationfragOffset
- packet fragmentation offsetpublic NetMessage.Ip(Message payload, NetAddress src, NetAddress dst, short protocol, byte priority, byte ttl)
payload
- packet payloadsrc
- packet source addressdst
- packet destination addressprotocol
- packet protocolpriority
- packet priorityttl
- packet time-to-liveMethod Detail |
---|
public NetMessage.Ip freeze()
public boolean isFrozen()
public NetMessage.Ip copy()
public NetAddress getSrc()
public NetAddress getDst()
public Message getPayload()
public byte getPriority()
public short getProtocol()
public short getId()
public short getFragOffset()
public byte getTTL()
public void decTTL()
public boolean hasSourceRoute()
public NetAddress[] getSourceRoute()
public int getSourceRoutePointer()
public void setSourceRoute(NetMessage.IpOptionSourceRoute srcRoute)
srcRoute
- source routepublic java.lang.String toString()
toString
in class java.lang.Object
public int getSize()
public void getBytes(byte[] b, int offset)
b
- destination byte arrayoffset
- byte array starting offset
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |