Skip to content

Commit

Permalink
fix: refactor TCP multiplexing message handling to allow mutable head…
Browse files Browse the repository at this point in the history
…er processing

Signed-off-by: Dengfeng Liu <liudf0716@gmail.com>
  • Loading branch information
liudf0716 committed Nov 14, 2024
1 parent 3f21cc8 commit b3626fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ static int process_stream_data(struct bufferevent *bev,
return 0;
}

static void handle_tcp_mux_message(const struct tcp_mux_header *tmux_hdr,
static void handle_tcp_mux_message(struct tcp_mux_header *tmux_hdr,
struct tmux_stream *cur)
{
if (cur == &abandon_stream) {
Expand Down

0 comments on commit b3626fa

Please sign in to comment.