phosphor-ipmi-net: Add sysrq handle in netipmid for ipmitool sol.

Send MSG_OOB flag to console server to generate a break.

Tested:
1. Open SOL by ipmitool: ipmitool -H <bmcip> -I lanp -U <user> -P <password> sol activate
2. In SOL terminal, login os and "echo 1 > /proc/sys/kernel/sysrq" to open sysrq function
3. In SOL terminal, Enter ~+B to generate break, then enter "h" in 5 second.
4. Veirfy below message shown in SOL:
root@bytedance:~# ~B [send break]
[  366.377331] sysrq: HELP : loglevel(0-9) reboot(b) crash(c) terminate-all-tasks(e)
memory-full-oom-kill(f) kill-all-tasks(i) thaw-filesystems(j) sak(k) show-backtrace-all-active-cpus(l)
show-memory-usage(m) nice-all-RT-tasks(n) poweroff(o) show-registers(p) show-all-timers(q) unraw(r)
sync(s) show-task-states(t) unmount(u) force-fb(V) show-blocked-tasks(w) dump-ftrace-buffer(z)

Change-Id: Ieac3ee0c7f964920214aa185a947e0449034726f
Signed-off-by: Tingting Chen <chentingting.2150@bytedance.com>
diff --git a/command/sol_cmds.cpp b/command/sol_cmds.cpp
index ceee3d8..9bb92ce 100644
--- a/command/sol_cmds.cpp
+++ b/command/sol_cmds.cpp
@@ -39,7 +39,8 @@
 
         context.processInboundPayload(
             request->packetSeqNum, request->packetAckSeqNum,
-            request->acceptedCharCount, request->inOperation.ack, charData);
+            request->acceptedCharCount, request->inOperation.ack,
+            request->inOperation.generateBreak, charData);
     }
     catch (const std::exception& e)
     {