5 references to ClientPreface
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\Http1Connection.cs (1)
856
var clientPrefaceRequestLine = Http2.Http2Connection.
ClientPreface
.Slice(0, PrefaceLineLength);
Internal\Http2\Http2Connection.cs (4)
564
if (readableBuffer.Length >=
ClientPreface
.Length)
663
Debug.Assert(buffer.Length >=
ClientPreface
.Length, "Not enough content to match preface.");
665
var preface = buffer.Slice(0,
ClientPreface
.Length);
668
if (!span.SequenceEqual(
ClientPreface
))