Register SOL commands to the command table.
Change-Id: If254dd033aa317d6a891789111e56183c2bf3707
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
diff --git a/main.cpp b/main.cpp
index f6cdeec..033b85c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -18,6 +18,7 @@
#include "message_handler.hpp"
#include "provider_registration.hpp"
#include "socket_channel.hpp"
+#include "sol_module.hpp"
// Tuple of Global Singletons
session::Manager manager;
@@ -185,7 +186,6 @@
int main(int i_argc, char* i_argv[])
{
-
/*
* Required by apphandler IPMI Provider Library for logging.
*/
@@ -205,6 +205,9 @@
// Register the phosphor-net-ipmid session setup commands
command::sessionSetupCommands();
+ // Register the phosphor-net-ipmid SOL commands
+ sol::command::registerCommands();
+
// Start Event Loop
return eventloop::startEventLoop();