5 references to EightByteLimit
InMemory.FunctionalTests (1)
Http3\Http3ConnectionTests.cs (1)
207
await Http3Api.WaitForGoAwayAsync(false, VariableLengthIntegerHelper.
EightByteLimit
);
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3Connection.cs (1)
706
SendGoAwayAsync(VariableLengthIntegerHelper.
EightByteLimit
).Preserve();
src\Shared\runtime\Http3\Helpers\VariableLengthIntegerHelper.cs (3)
73
Debug.Assert(value >= 0 && value <=
EightByteLimit
, "Serialized values are within [0, 2^62).");
150
Debug.Assert(longToEncode <=
EightByteLimit
);
200
Debug.Assert(value <=
EightByteLimit
);