Skip to content
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
2 changes: 1 addition & 1 deletion lib/vquic/vquic_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct cf_quic_ctx {
};

#define H3_STREAM_CTX(ctx, data) \
(data ? Curl_uint32_hash_get(&(ctx)->streams, (data)->mid) : NULL)
((data) ? Curl_uint32_hash_get(&(ctx)->streams, (data)->mid) : NULL)

CURLcode vquic_ctx_init(struct Curl_easy *data,
struct cf_quic_ctx *qctx);
Expand Down
4 changes: 2 additions & 2 deletions lib/vtls/vtls.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ struct dynbuf;

#ifdef USE_ECH
#include "curlx/base64.h"
#define ECH_ENABLED(__data__) \
(__data__->set.tls_ech && !(__data__->set.tls_ech & CURLECH_DISABLE))
#define ECH_ENABLED(data) \
((data)->set.tls_ech && !((data)->set.tls_ech & CURLECH_DISABLE))
#endif /* USE_ECH */

#define ALPN_ACCEPTED "ALPN: server accepted "
Expand Down
Loading