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 30, 2024
1 parent 02c1802 commit 0ed62ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/quic/cid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@ CID::CID() : ptr_(&cid_) {
CID::CID(const ngtcp2_cid& cid) : CID(cid.data, cid.datalen) {}

CID::CID(const uint8_t* data, size_t len) : CID() {
DCHECK_GE(len, kMinLength);
DCHECK_LE(len, kMaxLength);
ngtcp2_cid_init(&cid_, data, len);
}

CID::CID(const ngtcp2_cid* cid) : ptr_(cid) {
CHECK_NOT_NULL(cid);
DCHECK_GE(cid->datalen, kMinLength);
DCHECK_LE(cid->datalen, kMaxLength);
}

Expand Down

0 comments on commit 0ed62ff

Please sign in to comment.