3 writes to _listenFd
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (3)
TlsEventPump.cs (3)
184
_listenFd
= listenFd;
322
internal void SetListenFd(int fd) =>
_listenFd
= fd;
344
_listenFd
= -1;
6 references to _listenFd
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (6)
TlsEventPump.cs (6)
329
/// set and clear <see cref="
_listenFd
"/>. Must be called before the listener closes the listen
336
int listenFd =
_listenFd
;
401
if (fd ==
_listenFd
)
532
/// (<see cref="
_listenFd
"/> set to -1 by <see cref="StopAccepting"/>).
548
while (_running &&
_listenFd
>= 0)
603
int fd = NativeTls.accept4(
_listenFd
, IntPtr.Zero, IntPtr.Zero, NativeTls.SOCK_NONBLOCK | NativeTls.SOCK_CLOEXEC);