From 5c7007a4e98f5d0d207ceee9493c3e1ae9bc5434 Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Wed, 2 Sep 2015 20:37:11 -0700 Subject: [PATCH] Fixing member field name --- src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) => {