Displaying 1 result from an estimated 1 matches for "io_loop_handler_remove".
Did you mean:
io_loop_handle_remove
2005 Jul 14
1
Changes made to imap descriptor handling in test78?
...e is
some debugging output I recorded:
Jul 14 12:55:27 egg dovecot: imap-login: Login: user=<dom>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, SSL
Jul 14 12:55:30 egg dovecot: IMAP(dom): kqueue was given an unknown descriptor 1, -1: No such file or directory
The second line points refers to io_loop_handler_remove, the
tcp/ip socket (1) is having the read filter (-1) removed,
suspending events from the socket, or at least, that is
what should be happening.
From kevent(2) for ENOENT:
[ENOENT] The event could not be found to be modified or deleted.
This suggests to me that we are incorrectly calling
io_loo...