Fixing member field name

This commit is contained in:
Louis DeJardin 2015-09-02 20:37:11 -07:00
parent 0859d82d6b
commit 5c7007a4e9
1 changed files with 2 additions and 2 deletions

View File

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