This commit is contained in:
Carl Lerche
2017-08-09 11:43:55 -07:00
parent f39e983af0
commit 0bf0e79132
3 changed files with 13 additions and 10 deletions

View File

@@ -95,8 +95,13 @@ impl<T> FramedRead<T> {
Kind::PushPromise => {
frame::PushPromise::load(head, &bytes[frame::HEADER_LEN..])?.into()
}
Kind::Priority |
Kind::Continuation |
Kind::Priority => {
// TODO: implement
return Ok(None);
}
Kind::Continuation => {
unimplemented!();
}
Kind::Unknown => {
unimplemented!()
}