Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoby authored Oct 17, 2023
1 parent 8194489 commit 889cec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ else ()

FetchContent_Declare(tlsuv
GIT_REPOSITORY https://github.com/openziti/tlsuv.git
GIT_TAG v0.25.1
GIT_TAG v0.26.0
)
FetchContent_MakeAvailable(tlsuv)

Expand Down
2 changes: 1 addition & 1 deletion library/channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ static void on_channel_connect_internal(uv_connect_t *req, int status) {
if (ch->ctx->api_session != NULL && ch->ctx->api_session->token != NULL) {
CH_LOG(DEBUG, "connected");
tlsuv_stream_t *mbed = (tlsuv_stream_t *) req->handle;
tlsuv_stream_read(mbed, channel_alloc_cb, on_channel_data);
tlsuv_stream_read_start(mbed, channel_alloc_cb, on_channel_data);
ch->reconnect_count = 0;
send_hello(ch, ch->ctx->api_session);
} else {
Expand Down

0 comments on commit 889cec7

Please sign in to comment.