Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saschagrunert/peel-ip
Packet parsing for the Internet Protocol Suite 📦
https://github.com/saschagrunert/peel-ip
internet-protocol-suite packet-parsing peel peel-ip
Last synced: about 2 months ago
JSON representation
Packet parsing for the Internet Protocol Suite 📦
- Host: GitHub
- URL: https://github.com/saschagrunert/peel-ip
- Owner: saschagrunert
- License: mit
- Created: 2016-12-28T11:39:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T15:15:00.000Z (almost 8 years ago)
- Last Synced: 2024-10-11T23:43:21.101Z (2 months ago)
- Topics: internet-protocol-suite, packet-parsing, peel, peel-ip
- Language: Rust
- Homepage:
- Size: 1.31 MB
- Stars: 27
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# peel-ip
[![Build Status](https://travis-ci.org/saschagrunert/peel-ip.svg)](https://travis-ci.org/saschagrunert/peel-ip) [![Build status](https://ci.appveyor.com/api/projects/status/1c6d93otbd8dgswc?svg=true)](https://ci.appveyor.com/project/saschagrunert/peel-ip) [![Coverage Status](https://coveralls.io/repos/github/saschagrunert/peel-ip/badge.svg?branch=master)](https://coveralls.io/github/saschagrunert/peel-ip?branch=master) [![master doc peel-ip](https://img.shields.io/badge/master_doc-peel_ip-blue.svg)](https://saschagrunert.github.io/peel-ip) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/saschagrunert/peel-ip/blob/master/LICENSE) [![Crates.io](https://img.shields.io/crates/v/peel-ip.svg)](https://crates.io/crates/peel-ip) [![doc.rs](https://docs.rs/peel-ip/badge.svg)](https://docs.rs/peel-ip)
## Packet parsing for the Internet Protocol Suite
The base for this crate is [Peel](https://github.com/saschagrunert/peel), a dynamic parsing tree using arena based
memory management. The current structure of the parsing tree look like this:![Parser diagram](.github/structure.png)
This means in detail, that beside the usual protocol stack (like: `[Ethernet, IPv4, TCP, HTTP]`) IP in IP combinations
are supported as well (like `[Ethernet, IPv4, IPv6, TCP, HTTP]`).## Planned features:
- Add support packet reassembly
- Add more protocols of the TCP/IP suite## Contributing
You want to contribute to this project? Wow, thanks! So please just fork it and send me a pull request.