// iscsiop.h
typedef struct _SetTunnelModeOuterAddress_IN {
ULONG PortNumber;
ISCSI_IP_Address DestinationAddress;
ISCSI_IP_Address TunnelModeOuterAddress;
} SetTunnelModeOuterAddress_IN, *PSetTunnelModeOuterAddress_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The SetTunnelModeOuterAddress_IN structure holds the input data for the SetTunnelModeOuterAddress method.
PortNumberThe number of the port to associate with the tunnel-mode address. A value of 0xffffffff associates the tunnel-mode address with all ports.
DestinationAddressAn ISCSI_IP_Address structure that indicates the destination IP address in a way that is independent of the version of IP protocol in use.
TunnelModeOuterAddressAn ISCSI_IP_Address structure that indicates the IP address of the security gateway (tunnel-mode outer address) in a way that is independent of the version of IP protocol in use.
You must implement this method.