diff --git a/src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs b/src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs index 2e7dbde8ad..2f71ef4690 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs @@ -17,7 +17,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http { private List _dispatchPipes = new List(); private int _dispatchIndex; - private ArraySegment> _1234 = new ArraySegment>(new[] { new ArraySegment(new byte[] { 1, 2, 3, 4 }) }); + private ArraySegment> _binaryOneTwoThreeFour = new ArraySegment>(new[] { new ArraySegment(new byte[] { 1, 2, 3, 4 }) }); protected ListenerPrimary(IMemoryPool memory) : base(memory) { @@ -79,7 +79,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http write.Init(Thread.Loop); write.Write2( dispatchPipe, - _1234, + _binaryOneTwoThreeFour, socket, (write2, status, error, state) => {