// iscsiop.h
typedef struct _AddConnectionToSession_OUT {
ULONG Status;
ULONGLONG UniqueConnectionId;
} AddConnectionToSession_OUT, *PAddConnectionToSession_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The AddConnectionToSession_OUT structure holds output data for the AddConnectionToSession method.
StatusThe status of the AddConnectionToSession operation. For a list of status qualifiers, see ISCSI_STATUS_QUALIFIERS.
UniqueConnectionIdA 64-bit integer that uniquely identifies the connection across the entire network.
The iSCSI service requires this method. It is optional that you implement this method.