]> git.ipfire.org Git - thirdparty/tvheadend.git/commit
FreeBSD: kevent is not a bitmask.
authorE.Smith <31170571+azlm8t@users.noreply.github.com>
Mon, 15 Oct 2018 19:55:18 +0000 (20:55 +0100)
committerJaroslav Kysela <perex@perex.cz>
Tue, 16 Oct 2018 14:51:46 +0000 (16:51 +0200)
commite3c8cb7dfd8de508a89d304cef5fe9b86bdc08c7
treee12662b16334ca7bf04d7f4981dd5a947668834f
parentf08bbef11c77a6a81d4e2bf974e36e54b0cd14d6
FreeBSD: kevent is not a bitmask.

The kevent does not take a bitmask. So if you register for READ|WRITE
then it only registers READ since READ=-1 and WRITE=-2.

This means that with an async socket connect then you do not get a
callback on connect.

So we need to register these separately.
src/tvhpoll.c