Skip to content

Commit

Permalink
[TEMP] For debugging arm ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Dec 29, 2024
1 parent 02c1802 commit 5106dfe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/quic/endpoint.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 5106dfe

Please sign in to comment.