// iscsiop.h
typedef struct _RemoveConnectionFromSession_IN {
ULONGLONG UniqueSessionId;
ULONGLONG UniqueConnectionId;
} RemoveConnectionFromSession_IN, *PRemoveConnectionFromSession_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The RemoveConnectionFromSession_IN structure holds the input data for the RemoveConnectionFromSession method, which is used to remove a connection from a session.
UniqueSessionIdA 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in their UniqueSessionId parameter. Do not confuse this value with the values in the ISID and TSID members.
UniqueConnectionIdA 64-bit integer that uniquely identifies the connection. Do not confuse this value with the connection ID (CID).
You must implement this class.