// iscsiop.h
typedef struct _LogoutFromTarget_IN {
ULONGLONG UniqueSessionId;
} LogoutFromTarget_IN, *PLogoutFromTarget_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The LogoutFromTarget_IN structure holds the input data for the LogoutFromTarget method, which is used to log out from an iSCSI target.
UniqueSessionIdA 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in the UniqueSessionId parameter. Do not confuse this value with the values in the ISID and TSID members.
You must implement this method.