From 5106dfe3494b9d31b082f7e90cd5c130fb4a6db7 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Sun, 29 Dec 2024 09:58:09 -0800 Subject: [PATCH] [TEMP] For debugging arm ci issue --- src/quic/endpoint.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/quic/endpoint.cc b/src/quic/endpoint.cc index bff3ced8a2b8ab..2427ac10d9d739 100644 --- a/src/quic/endpoint.cc +++ b/src/quic/endpoint.cc @@ -1519,6 +1519,10 @@ void Endpoint::Receive(const uv_buf_t& buf, // The dcid and scid below are the values sent from the peer received in the // current packet, so in this case, dcid represents who the peer sent the // packet too (this endpoint) and the scid represents who sent the packet. +// TODO(@jasnell): Temporary to debug CI issues in arm +printf(">>>> dcidlen %zu\n", pversion_cid.dcidlen); +printf(">>>> scidlen %zu\n", pversion_cid.scidlen); + CID dcid(pversion_cid.dcid, pversion_cid.dcidlen); CID scid(pversion_cid.scid, pversion_cid.scidlen);