Simple protocol parser taking a single .pcap-file as input. Serialises messages from supported protocols into protocol buffers. Provide a method to parse from .pcap-files with PPI or Ethernet link-layer header types.
Main function in za.co.jmc.reader.PcapParser
is entry point to library.
- No protobuf implementation (yet)
- No secondary protocol parsing, other than PCAP file reader and PPI packet parsing
- No support for Ethernet Frame link-layer type
- compile using
mvn package
- in
target
directory, executejava -jar protocol-to-protobuf-0.0.1.jar <filename>
- za.co.jmc.pcap contains all .pcap utilities and accessors
- za.co.jmc.reader contains main parsing classes (and should be entry point to discovering this repo)
- za.co.jmc.util contains miscellaneous utilities
- za.co.jmc.protocol contains protocol-specific parsing implementations
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards-compatible manner, and
- PATCH version when you make backwards-compatible bug fixes.