http: websocket: code cleanup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-02-04 17:16:36 +01:00
parent 1edb52411e
commit 5cc4ce3b4d

View File

@ -273,11 +273,9 @@ impl<W: AsyncWrite + Unpin> AsyncWrite for WebSocketWriter<W> {
fn poll_write(self: Pin<&mut Self>, cx: &mut Context, buf: &[u8]) -> Poll<io::Result<usize>> {
let this = Pin::get_mut(self);
let frametype = OpCode::Binary;
if this.frame.is_none() {
// create frame buf
let frame = match create_frame(this.mask, buf, frametype) {
let frame = match create_frame(this.mask, buf, OpCode::Binary) {
Ok(f) => f,
Err(e) => {
return Poll::Ready(Err(io_err_other(e)));