| Package | Description |
|---|---|
| datastructure | |
| flowGenerator | |
| packetCapturer |
| Modifier and Type | Field and Description |
|---|---|
private java.util.ArrayList<CapturedPacket> |
Flow.listOfPackets
List of packets assigned to the flow.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.ArrayList<CapturedPacket> |
Flow.getPackets()
Gets all the packets associated with the flow.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Flow.addPacket(CapturedPacket newCapturedPacket)
Adds packet to the flow.
|
| Constructor and Description |
|---|
Flow(CapturedPacket newCapturedPacket)
Constructs the object.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
FlowGenerator.createNewFlow(CapturedPacket newCapturedPacket)
Creates a new
Flow and adds it to the openFlowList. |
private void |
FlowGenerator.updateFlow(CapturedPacket newCapturedPacket,
Flow currentFlow)
The
currentFlow is updated with the newCapturedPacket. |
| Modifier and Type | Field and Description |
|---|---|
private java.util.Queue<CapturedPacket> |
CapturedPacketsQueue.listOfPackets
Queue of captured packets.
|
| Modifier and Type | Method and Description |
|---|---|
CapturedPacket |
CapturedPacketsQueue.getNextPacket()
Gets next packet from the queue.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
CapturedPacketsQueue.queueUpPacket(CapturedPacket packet)
Adds packet to the queue.
|