Skip to content

Commit

Permalink
fix: missing boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
braindigitalis committed Dec 12, 2024
1 parent 4ee7abb commit ae0565c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dpp/socketengines/kqueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ struct DPP_EXPORT socket_engine_kqueue : public socket_engine_base {
EV_SET(&ke, e.fd, EVFILT_WRITE, EV_ADD | EV_ONESHOT, 0, 0, nullptr);
kevent(kqueue_handle, &ke, 1, nullptr, 0, nullptr);
}
return true;
}

bool register_socket(const socket_events& e) final {
Expand Down

0 comments on commit ae0565c

Please sign in to comment.