Skip to content
Merged
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 src/quic/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ constexpr uint64_t kMaxSizeT = std::numeric_limits<size_t>::max();
constexpr uint64_t kMaxSafeJsInteger = 9007199254740991;
constexpr auto kSocketAddressInfoTimeout = 60 * NGTCP2_SECONDS;
constexpr size_t kMaxVectorCount = 16;
constexpr size_t kMaxStreamId = std::numeric_limits<stream_id>::max();
constexpr stream_id kMaxStreamId = std::numeric_limits<stream_id>::max();

class DebugIndentScope final {
public:
Expand Down
Loading