Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align picoquic 2023 12 30 #27

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ci/build_picotls.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ cd ..
git clone https://github.com/h2o/picotls
cd picotls
# git checkout -q "$COMMIT_ID"
git checkout
git submodule init
git submodule update
cmake $CMAKE_OPTS .
Expand Down
2 changes: 1 addition & 1 deletion lib/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ int fuzi_q_start_connection(fuzi_q_ctx_t* fuzi_q_ctx, fuzi_q_cnx_ctx_t* cnx_ctx,
/* Try pick the ALPN and version from tickets if there are any */

if (picoquic_demo_client_get_alpn_and_version_from_tickets(fuzi_q_ctx->quic, PICOQUIC_TEST_SNI, alpn,
proposed_version, current_time, &ticket_alpn, &ticket_version) == 0) {
proposed_version, &ticket_alpn, &ticket_version) == 0) {
if (ticket_version != 0) {
proposed_version = ticket_version;
}
Expand Down
Loading