https://github.com/rusticata/ospf-parser
Parser for the OSPF v2 protocol, written in pure rust
https://github.com/rusticata/ospf-parser
Last synced: 29 days ago
JSON representation
Parser for the OSPF v2 protocol, written in pure rust
- Host: GitHub
- URL: https://github.com/rusticata/ospf-parser
- Owner: rusticata
- License: other
- Created: 2020-04-09T21:20:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-13T11:41:36.000Z (over 3 years ago)
- Last Synced: 2025-03-28T15:45:56.654Z (about 2 months ago)
- Language: Rust
- Size: 78.1 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# ospf-parser
[](./LICENSE-MIT)
[](./LICENSE-APACHE)
[](https://travis-ci.org/rusticata/ospf-parser)
[](https://crates.io/crates/ospf-parser)# OSPFv2 and OSPFv3 Parser
A parser for the Open Shortest Path First version 2 ([OSPFv2]) and OSPF for IPv6
(also known as [OSPFv3]) routing protocols,
implemented with the [nom](https://github.com/Geal/nom) parser combinator
framework in pure Rust.The code is available on [Github](https://github.com/rusticata/ospf-parser)
and is part of the [Rusticata](https://github.com/rusticata) project.[OSPFv2]: https://tools.ietf.org/html/rfc2328 "OSPF Version 2, RFC 2328"
[OSPFv3]: https://tools.ietf.org/html/rfc5340 "OSPF for IPv6, RFC 5340"## Changes
### 0.5.0
- Update to nom-derive 0.10 / nom 7
### 0.3.0
- Update to nom-derive 0.7 / nom 6
### 0.2.0
- Add support for OSPFv2 Opaque LSA (RFC5250)
- Upgrade to nom-derive 0.6 and fix some Verify errors### 0.1.0
- Initial release
## License
Licensed under either of
* Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)at your option.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.