RemoveConnectionFromSession_IN - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// iscsiop.h

typedef struct _RemoveConnectionFromSession_IN {
  ULONGLONG UniqueSessionId;
  ULONGLONG UniqueConnectionId;
} RemoveConnectionFromSession_IN, *PRemoveConnectionFromSession_IN;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-iscsiop-_removeconnectionfromsession_in)

_RemoveConnectionFromSession_IN structure

Description

The RemoveConnectionFromSession_IN structure holds the input data for the RemoveConnectionFromSession method, which is used to remove a connection from a session.

Members

UniqueSessionId

A 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.

UniqueConnectionId

A 64-bit integer that uniquely identifies the connection. Do not confuse this value with the connection ID (CID).

Remarks

You must implement this class.

See also

AddConnectionToSession

LoginToTarget

RemoveConnectionFromSession