mirror of
https://git.proxmox.com/git/proxmox
synced 2025-08-13 13:27:10 +00:00
proxmox-http: websocket: fix comment about callback
this was once a callback in an early version, but it changed to a channel, but the comment was not updated Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
138f32e360
commit
4826ff99d8
@ -467,7 +467,8 @@ type WebSocketReadResult = Result<(OpCode, Box<[u8]>), WebSocketError>;
|
|||||||
///
|
///
|
||||||
/// On read, reads the underlying reader and tries to decode the frames and
|
/// On read, reads the underlying reader and tries to decode the frames and
|
||||||
/// simply returns the data stream.
|
/// simply returns the data stream.
|
||||||
/// When it encounters a control frame, calls the given callback.
|
/// When it encounters a control frame, sends it via the given sender
|
||||||
|
/// to a channel
|
||||||
///
|
///
|
||||||
/// Has an internal Buffer for storing incomplete headers.
|
/// Has an internal Buffer for storing incomplete headers.
|
||||||
pub struct WebSocketReader<R: AsyncRead> {
|
pub struct WebSocketReader<R: AsyncRead> {
|
||||||
@ -479,7 +480,7 @@ pub struct WebSocketReader<R: AsyncRead> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<R: AsyncRead> WebSocketReader<R> {
|
impl<R: AsyncRead> WebSocketReader<R> {
|
||||||
/// Creates a new WebSocketReader with the given CallBack for control frames
|
/// Creates a new WebSocketReader with the given sender for control frames
|
||||||
/// and a default buffer size of 4096.
|
/// and a default buffer size of 4096.
|
||||||
pub fn new(
|
pub fn new(
|
||||||
reader: R,
|
reader: R,
|
||||||
|
Loading…
Reference in New Issue
Block a user