rust-sctp
rust-sctp copied to clipboard
High level SCTP networking library for Rust
Since rust 1.64, it is not possible to build this library anymore: ``` cannot transmute between types of different sizes, or dependently-sized types --> src/sctpsock.rs:149:81 ``` There have been a...
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...
In 5GCore (mobile backhaul), protocol called NGAP uses SCTP. Specification says for NGAP SCTP's PPID should be 60. With this PR, the PPID value can be specified in API.
Just simply convert try!() macro to '?' operator to avoid compiler warnings. Some of Resut is converted to Result as well.
TLS?
Any plans to support TLS over SCTP?
On the client I sent data through SctpStream's Write impl. On the server side I tried to read it using: > let sock = sctp::SctpEndpoint::bind("127.0.0.1:2000").unwrap(); loop{ let mut v =...
So in sctp you have a Socket which is your applications point of presence, where it can receive or send messages. A Socket has 0-n Associations, which are connections between...
As noted in sctp-sys's Readme, support of SCTP is across the board quite spotty. Linux & BSD-distros take their sweet time to support the newest SCTP-features and on Windows, SctpDrv...
https://github.com/rust-lang/rust/pull/78802 https://github.com/phsym/rust-sctp/issues/12 Most code and macros to convert from and to rust layout such as Ipv4Addr, Ipv6Addr, SocketAddrV4, SocketAddrV6 has been copied from the mio crate. AAll system calls have...