void callback(struct ev_loop *loop, ev_io *w, int events)
{
if (EV_READ == events) {
...
}
else if (EV_WRITE == events) {
...
}
else {
here recv event's number is 3
}
}
In libev source code 'ev.h', i had not been find macro to define number 0x03
EV_READ = 0x01, /* ev_io detected read will not block */
EV_WRITE = 0x02, /* ev_io detected write will not block */
It's a bit mask. 3 indicates both a readable and writable condition are available to process.
Try something like
if (events & EV_READ) { // something is readable
...
}
if (events & EV_WRITE) { // something is writable
...
}