make internal command functor match external

The internal command functor was getting passed a
const message::Handler& instead of a std::shared_ptr<message::Handler>
which will not work with an upcoming patch that needs the functor to be
able to modify the Handler object. Also, it is convenient to have the
same signature for both types of handlers.

Tested: run ipmitool to see that behavior does not change.

Change-Id: Ie8660e4d16bd66eccc282aef2594b88c25b847db
Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
diff --git a/command_table.hpp b/command_table.hpp
index 172c015..d65db12 100644
--- a/command_table.hpp
+++ b/command_table.hpp
@@ -44,7 +44,7 @@
  * command is returned as a vector.
  */
 using CommandFunctor = std::function<std::vector<uint8_t>(
-    const std::vector<uint8_t>&, const message::Handler&)>;
+    const std::vector<uint8_t>&, std::shared_ptr<message::Handler>&)>;
 
 /**
  * @struct CmdDetails