alfianrahmn / xuggle

Automatically exported from code.google.com/p/xuggle
0 stars 0 forks source link

Provide source IP of individual IPacket's #231

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The IPacket interface should allow the source IP of the packet to be
discovered, for applicable packets (eg. those from an RTP stream).  For
packets associated with an IContainer where this doesn't apply (eg.
filesystem file), the relevant method will just return null.

Example:
IPacket pkt;

while (icontainerInput.readNextPacket(pkt)) {
    if (pkt.getSourceIP() != null) {
        log.debug("Source IP for this packet is: " + pkt.getSourceIP());
    }
    // [...]
}

Original issue reported on code.google.com by jez9...@gmail.com on 5 Jan 2010 at 9:06

GoogleCodeExporter commented 8 years ago
accepted but marking low; medium or higher enhancements are things we try to
schedule, and we won't be working on this in the near to mid term.

Original comment by art.cla...@gmail.com on 5 Jan 2010 at 9:10