Commit dbb601ab authored by Dominik Charousset's avatar Dominik Charousset

Fix access modifier for network::event_handler::fd

parent 4a61bd68
......@@ -250,8 +250,12 @@ class event_handler {
m_eventbf = eventbf;
}
protected: // used by the epoll implementation
/**
* Returns the native socket handle for this handler.
*/
virtual native_socket fd() const = 0;
protected:
default_multiplexer& m_backend;
int m_eventbf;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment