libsip 0.2.6

SIP protocol Implementation, with a focus towords softphone clients.
Documentation
use libsip::{headers::parse::parse_subject_header, Header};

use nom::error::VerboseError;

#[test]
fn write() {
    let header = Header::Subject("Softphone 1.0".into());
    assert_eq!("Subject: Softphone 1.0".to_string(), format!("{}", header));
}

#[test]
fn read() {
    let remains = vec![];
    let header = Header::Subject("Softphone 1.0".into());
    assert_eq!(
        Ok((remains.as_ref(), header)),
        parse_subject_header::<VerboseError<&[u8]>>(b"Subject: Softphone 1.0\r\n")
    );
}