3 writes to _listenFd
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (3)
TlsEventPump.cs (3)
184_listenFd = listenFd; 322internal 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 336int listenFd = _listenFd; 401if (fd == _listenFd) 532/// (<see cref="_listenFd"/> set to -1 by <see cref="StopAccepting"/>). 548while (_running && _listenFd >= 0) 603int fd = NativeTls.accept4(_listenFd, IntPtr.Zero, IntPtr.Zero, NativeTls.SOCK_NONBLOCK | NativeTls.SOCK_CLOEXEC);