|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.trans.TransUdp
public class TransUdp
UDP implementation. Does not perform fragmentation.
Nested Class Summary | |
---|---|
static class |
TransUdp.UdpMessage
UDP packet structure. |
Nested classes/interfaces inherited from interface jist.swans.trans.TransInterface |
---|
TransInterface.SocketHandler, TransInterface.TransMessage, TransInterface.TransTcpInterface, TransInterface.TransUdpInterface |
Field Summary | |
---|---|
private java.util.HashMap |
handlers
socket handlers. |
static org.apache.log4j.Logger |
log
UDP logger. |
private NetInterface |
netEntity
network layer entity. |
private TransInterface.TransUdpInterface |
self
self-referencing proxy entity. |
Constructor Summary | |
---|---|
TransUdp()
Initialize UDP transport implementation. |
Method Summary | |
---|---|
void |
addSocketHandler(int port,
TransInterface.SocketHandler handler)
Register socket handler. |
void |
delSocketHandler(int port)
Unregister socket handler. |
TransInterface.TransUdpInterface |
getProxy()
Return self-referencing proxy entity. |
void |
receive(Message msg,
NetAddress src,
MacAddress lastHop,
byte macId,
NetAddress dst,
byte priority,
byte ttl)
Receive a message from network layer. |
void |
send(Message msg,
NetAddress dst,
int dstPort,
int srcPort,
byte priority)
Send message (from APPLICATON). |
void |
setNetEntity(NetInterface netEntity)
Set network layer entity. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final org.apache.log4j.Logger log
private NetInterface netEntity
private TransInterface.TransUdpInterface self
private java.util.HashMap handlers
Constructor Detail |
---|
public TransUdp()
Method Detail |
---|
public TransInterface.TransUdpInterface getProxy()
public void setNetEntity(NetInterface netEntity)
netEntity
- network layer entitypublic void addSocketHandler(int port, TransInterface.SocketHandler handler)
addSocketHandler
in interface TransInterface
port
- bound socket porthandler
- callback handlerpublic void delSocketHandler(int port)
delSocketHandler
in interface TransInterface
port
- bound socket portpublic void send(Message msg, NetAddress dst, int dstPort, int srcPort, byte priority)
send
in interface TransInterface
msg
- packet payload (usually from application layer)dst
- packet destination addressdstPort
- packet destination portsrcPort
- packet source portpriority
- packet prioritypublic void receive(Message msg, NetAddress src, MacAddress lastHop, byte macId, NetAddress dst, byte priority, byte ttl)
receive
in interface NetInterface.NetHandler
msg
- message receivedsrc
- source network addresslastHop
- source link addressmacId
- incoming interfacedst
- destination network addresspriority
- packet priorityttl
- packet time-to-live
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |