Packages

package pcap

Protocol that describes libpcap files.

Source
package.scala
See also

http://wiki.wireshark.org/Development/LibpcapFileFormat

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. pcap
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class CaptureFile(header: GlobalHeader, records: Vector[Record]) extends Product with Serializable
  2. case class GlobalHeader(ordering: ByteOrdering, versionMajor: Int, versionMinor: Int, thiszone: Int, sigfigs: Long, snaplen: Long, network: LinkType) extends Product with Serializable
  3. sealed trait LinkType extends AnyRef

    Describes the link layer type in a PCAP capture.

    Describes the link layer type in a PCAP capture.

    See also

    http://www.tcpdump.org/linktypes.html

  4. case class Record(header: RecordHeader, data: BitVector) extends Product with Serializable
  5. case class RecordHeader(timestampSeconds: Long, timestampMicros: Long, includedLength: Long, originalLength: Long) extends Product with Serializable

Value Members

  1. def gint16(implicit ordering: ByteOrdering): Codec[Int]
  2. def gint32(implicit ordering: ByteOrdering): Codec[Int]
  3. def guint16(implicit ordering: ByteOrdering): Codec[Int]
  4. def guint32(implicit ordering: ByteOrdering): Codec[Long]
  5. object CaptureFile extends Serializable
  6. object GlobalHeader extends Serializable
  7. object LinkType

    Companion for LinkType.

  8. object Record extends Serializable
  9. object RecordHeader extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped