libsip icon indicating copy to clipboard operation
libsip copied to clipboard

A SIP protocol implementation

Results 6 libsip issues
Sort by recently updated
recently updated
newest added

I can't compile libsip as dependency for other lib. Rust 1.54 ``` [package] name = "hello_sip" version = "0.1.0" edition = "2018" [dependencies] libsip = "0.2.6" ``` Got a bunch...

Hi, thank you for creating this library! I would very much like to contribute to the project to help it reach future milestones. I don’t see any issues though. What...

There are numerous errors like the one below using 6.0.0-alpha1. ```rust error[E0277]: the trait bound `E: FromExternalError` is not implemented for `E` | ::: /home/ayrton/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-6.0.1/src/combinator/mod.rs:115:37 | 115 | pub fn...

Can you add new authentification supports? - https://tools.ietf.org/html/rfc8760 Note: MD5 is obsolete since a long time

Replace the HashMap in the AuthHeader struct with BTreeMap, this will make testing easier

Hi, I am curious how I can debug nom errors. In nom, most helpful functions (like [convert_error](https://docs.rs/nom/6.0.0-alpha1/nom/error/fn.convert_error.html)) operate under `&str` while the libsip library uses `&[u8]`. At some point in...