3 writes to _listenFd
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (3)
TlsEventPump.cs (3)
209_listenFd = listenFd; 351internal void SetListenFd(int fd) => _listenFd = fd; 373_listenFd = -1;
6 references to _listenFd
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (6)
TlsEventPump.cs (6)
358/// set and clear <see cref="_listenFd"/>. Must be called before the listener closes the listen 365int listenFd = _listenFd; 430if (fd == _listenFd) 603/// (<see cref="_listenFd"/> set to -1 by <see cref="StopAccepting"/>). 619while (_running && _listenFd >= 0) 674int fd = NativeTls.accept4(_listenFd, IntPtr.Zero, IntPtr.Zero, NativeTls.SOCK_NONBLOCK | NativeTls.SOCK_CLOEXEC);