From: Richard Whitehouse Date: Sat, 30 Dec 2017 15:05:08 +0000 (+0000) Subject: Formatting tweaks X-Git-Url: https://git.richardwhiuk.com/?a=commitdiff_plain;h=79ed4ba697ec2c0d7ae38031db829dc4e6a1b1f0;p=rust-sip.git Formatting tweaks --- diff --git a/src/codec.rs b/src/codec.rs index d72bd89..266bf4f 100644 --- a/src/codec.rs +++ b/src/codec.rs @@ -117,7 +117,7 @@ impl SipCodec { // Top line beginnning with whitespace - ignore (&mut None, CharType::Whitespace, _) => { trace!("Got top line beginning with whitespace - ignore: {:?}", - line); + line); } // Top line with no headers! Discard. diff --git a/src/types.rs b/src/types.rs index aca4e2d..a918a5d 100644 --- a/src/types.rs +++ b/src/types.rs @@ -107,9 +107,9 @@ pub type AbsoluteUri = (Scheme, UriPath); pub enum Uri { Sip(SipUri), Sips(SipUri), -// Not currently implemented -// Tel(Vec), -// Urn(Vec), + // Not currently implemented + // Tel(Vec), + // Urn(Vec), Generic { scheme: Scheme, path: UriPath }, }