Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 5c7007a

Browse files
committed
Fixing member field name
1 parent 0859d82 commit 5c7007a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ abstract public class ListenerPrimary : Listener
1717
{
1818
private List<UvPipeHandle> _dispatchPipes = new List<UvPipeHandle>();
1919
private int _dispatchIndex;
20-
private ArraySegment<ArraySegment<byte>> _1234 = new ArraySegment<ArraySegment<byte>>(new[] { new ArraySegment<byte>(new byte[] { 1, 2, 3, 4 }) });
20+
private ArraySegment<ArraySegment<byte>> _binaryOneTwoThreeFour = new ArraySegment<ArraySegment<byte>>(new[] { new ArraySegment<byte>(new byte[] { 1, 2, 3, 4 }) });
2121

2222
protected ListenerPrimary(IMemoryPool memory) : base(memory)
2323
{
@@ -79,7 +79,7 @@ protected override void DispatchConnection(UvStreamHandle socket)
7979
write.Init(Thread.Loop);
8080
write.Write2(
8181
dispatchPipe,
82-
_1234,
82+
_binaryOneTwoThreeFour,
8383
socket,
8484
(write2, status, error, state) =>
8585
{

0 commit comments

Comments
 (0)