From e7023926675030a5976dffda0825445ca0b5ef84 Mon Sep 17 00:00:00 2001 From: Rajashekar Gade Reddy Date: Wed, 10 Jul 2019 16:54:55 +0000 Subject: Implemented close session cmd in host interface This command can close any session via host interface. Tested: Close the existing valid session by session id ipmitool raw 0x6 0x3c Response : 00 // success Close the existing valid session by session handle ipmitool raw 0x6 0x3c Response : 00 // success Close the session by zero session id ipmitool raw 0x6 0x3c Response : 0x87 // inavlid session id Close the session by zero session handle ipmitool raw 0x6 0x3c Response : 0x88 // inavlid session handle Close an inactive session. ipmitool raw 0x6 0x3c Response : 0xcc // invalid data field in request Close an inactive session. ipmitool raw 0x6 0x3c Response : 0xcc // invalid data field in request Signed-off-by: Rajashekar Gade Reddy Change-Id: I8af290001d8effbbcdbbe2dd93aabf1b015e7a88 --- include/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'include/Makefile.am') diff --git a/include/Makefile.am b/include/Makefile.am index 996c41a..08824c4 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -2,6 +2,7 @@ nobase_include_HEADERS = \ ipmid/api.hpp \ ipmid/api-types.hpp \ ipmid/sessiondef.hpp \ + ipmid/sessionhelper.hpp \ ipmid/filter.hpp \ ipmid/handler.hpp \ ipmid/message.hpp \ -- cgit v1.2.1