Getters for main and event sockets

This commit is contained in:
Sergey Naumov
2016-09-04 18:28:49 +03:00
parent 37f56e621b
commit 7393f5c7d4
2 changed files with 19 additions and 3 deletions

View File

@@ -470,7 +470,12 @@ bool connection::send_command(const std::string& command) const {
#undef i3IPC_TYPE_STR
}
int32_t connection::get_main_socket_fd() { return m_main_socket; }
int32_t connection::get_event_socket_fd() { return m_event_socket; }
int32_t connection::get_file_descriptor() {
I3IPC_WARN("connection::get_file_descriptor() is DEPRECATED")
return m_event_socket;
}