Stub out window update

This commit is contained in:
Carl Lerche
2017-07-08 22:36:24 -07:00
parent 981af88838
commit 6d1d54f104
3 changed files with 36 additions and 1 deletions

View File

@@ -91,7 +91,12 @@ impl<T> FramedRead<T> {
debug!("decoded; frame={:?}", frame);
unimplemented!();
}
Kind::WindowUpdate => unimplemented!(),
Kind::WindowUpdate => {
// TODO: IMPLEMENT
let frame = try!(frame::WindowUpdate::load(head, &bytes[frame::HEADER_LEN..]));
debug!("decoded; frame={:?}", frame);
return Ok(None);
},
Kind::Continuation => {
unimplemented!();
}