Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,7 @@ internal unsafe DisconnectAsyncResult(HttpListener httpListener, ulong connectio
_httpListener = httpListener;
_connectionId = connectionId;
// we can call the Unsafe API here, we won't ever call user code
_nativeOverlapped = httpListener._requestQueueBoundHandle.AllocateNativeOverlapped(s_IOCallback, state: this, pinData: null);
_nativeOverlapped = httpListener.RequestQueueBoundHandle.AllocateNativeOverlapped(s_IOCallback, state: this, pinData: null);
}

internal bool StartOwningDisconnectHandling()
Expand Down