netipmid: apply clang-format rules

Lots of whitespace change. Let clang-format do its job and keep the code
looking nice.

Change-Id: Idfcad1a99cab8170d55a06163de8ad3f420b68b7
Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
diff --git a/session.cpp b/session.cpp
index 208dfd0..9668ef2 100644
--- a/session.cpp
+++ b/session.cpp
@@ -1,17 +1,17 @@
 #include "session.hpp"
 
-#include <ctime>
-
 #include "endian.hpp"
 
+#include <ctime>
+
 namespace session
 {
 
 bool Session::isSessionActive()
 {
     auto currentTime = std::chrono::steady_clock::now();
-    auto elapsedSeconds = std::chrono::duration_cast<std::chrono::seconds>
-                          (currentTime - lastTime);
+    auto elapsedSeconds = std::chrono::duration_cast<std::chrono::seconds>(
+        currentTime - lastTime);
 
     switch (state)
     {