SendTargets_IN - NtDoc

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

typedef struct _SendTargets_IN {
  ULONGLONG UniqueSessionId;
  WCHAR     SendTargetsText[223 + 1];
} SendTargets_IN, *PSendTargets_IN;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_SendTargets_IN structure

Description

The SendTargets_IN structure holds the input data for the SendTargets method.

Members

UniqueSessionId

A 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in their UniqueSessionId parameter.

SendTargetsText

The authentication key text in the PDU.

Remarks

You must implement this method.

See also

AddConnectionToSession

LoginToTarget

SendTargets

SendTargets_OUT