Add API to add host console socket to the event loop.

Change-Id: Iee5eacb0948fa5bed8426f38cdbdc04cdf7afa90
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
diff --git a/sd_event_loop.hpp b/sd_event_loop.hpp
index 0a3a2f1..5f4654c 100644
--- a/sd_event_loop.hpp
+++ b/sd_event_loop.hpp
@@ -71,6 +71,12 @@
          */
         int startEventLoop();
 
+        /** @brief Add host console I/O event source to the event loop.
+         *
+         *  @param[in] fd - File descriptor for host console socket.
+         */
+        void startHostConsole(const sol::CustomFD& fd);
+
         /** @brief Remove host console I/O event source. */
         void stopHostConsole();