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);