#some-ip #message-parser #protocols #payload #udp #networking #autosar

someip_parse

A library for parsing the SOME/IP network protocol (without payload interpretation)

8 releases (5 breaking)

0.6.1 Nov 13, 2023
0.6.0 Nov 13, 2023
0.5.0 Nov 5, 2023
0.4.0 Oct 12, 2021
0.1.0 Sep 9, 2018

#277 in Network programming

Download history 185/week @ 2023-12-14 68/week @ 2023-12-21 44/week @ 2023-12-28 136/week @ 2024-01-04 131/week @ 2024-01-11 112/week @ 2024-01-18 126/week @ 2024-01-25 178/week @ 2024-02-01 274/week @ 2024-02-08 233/week @ 2024-02-15 246/week @ 2024-02-22 188/week @ 2024-02-29 267/week @ 2024-03-07 269/week @ 2024-03-14 271/week @ 2024-03-21 236/week @ 2024-03-28

1,065 downloads per month
Used in 2 crates (via someip)

MIT/Apache

215KB
4.5K SLoC

Crates.io docs.rs Build Status Github Build Status Gitlab codecov

someip_parse

A Rust library for parsing the SOME/IP network protocol (without payload interpretation).

Usage

Add the following to your Cargo.toml:

[dependencies]
someip_parse = "0.6.1"

Example

examples/print_messages.rs:

use someip_parse::SomeipMsgsIterator;

//trying parsing some ip messages located in a udp payload
for someip_message in SomeipMsgsIterator::new(&udp_payload) {
    match someip_message {
        Ok(value) => {
            if value.is_someip_sd() {
                println!("someip service discovery packet");
            } else {
                println!("0x{:x} (service id: 0x{:x}, method/event id: 0x{:x})",
                         value.message_id(),
                         value.service_id(),
                         value.event_or_method_id());
            }
            println!("  with payload {:?}", value.payload())
        },
        Err(_) => {} //error reading a someip packet (based on size, protocol version value or message type value)
    }
}

References

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option. The corresponding license texts can be found in the LICENSE-APACHE file and the LICENSE-MIT file.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.

No runtime deps