DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
The parameters for a response to a Group Owner (GO) negotiation request are specified in a DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS structure. This structure is sent with an OID_DOT11_WFD_SEND_INVITATION_RESPONSE request to the miniport.

Syntax

typedef struct _DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS {
  NDIS_OBJECT_HEADER              Header;
  DOT11_MAC_ADDRESS               PeerDeviceAddress;
  DOT11_DIALOG_TOKEN              DialogToken;
  PVOID                           ResponseContext;
  ULONG                           uSendTimeout;
  DOT11_WFD_STATUS_CODE           Status;
  DOT11_WFD_GO_INTENT             GroupOwnerIntent;
  DOT11_WFD_CONFIGURATION_TIMEOUT MinimumConfigTimeout;
  DOT11_MAC_ADDRESS               IntendedInterfaceAddress;
  DOT11_WFD_GROUP_CAPABILITY      GroupCapability;
  DOT11_WFD_GROUP_ID              GroupID;
  BOOLEAN                         bUseGroupID;
  ULONG                           uIEsOffset;
  ULONG                           uIEsLength;
} DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS, *PDOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS;

Members

Header

The type, revision, and size of the DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS structure. The required settings for the members of Header are the following.

Member Setting
Type NDIS_OBJECT_TYPE_DEFAULT
Revision DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1
Size DOT11_SIZEOF_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1

PeerDeviceAddress

The Peer-to-Peer (P2P) address of the Wi-Fi Direct (WFD) device that originated the GO negotiation request.

DialogToken

The dialog token received from the GO negotiation request packet. This dialog token must be included in the GO negotiation response packet.

RequestContext

uSendTimeout

The maximum time, in milliseconds, allowed to send the GO negotiation response. If the time-out expires before the miniport has successfully transmitted the GO negotiation response, it should indicate the NDIS_STATUS_DOT11_WFD_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE with a failure status.

Status

The status information to include in the GO negotiation response.

GroupOwnerIntent

The value for GO intent. This should be included in the Group Owner Intent attribute of the GO negotiation request.

MinimumConfigTimeout

The configuration time-out required by the system to change its mode of operation to a P2P Group Owner or a P2P Client. The miniport driver can set this with a larger value if necessary.

IntendedInterfaceAddress

The P2P interface address that is intended for the P2P group.

GroupCapability

The capability values that are included in the Group Capability bitmask of the P2P Capability Information Element (IE) in the GO negotiation response.

GroupID

The group identifier to include in the Group ID attribute of the GO negotiation response.

bUseGroupID

If TRUE, the value in GroupID should be included in the GO negotiation response.

uIEsOffset

The offset, in bytes, of the array of additional IEs that the Wi-Fi Direct (WFD) port must add to the GO negotiation response packet. This offset is from the start of the buffer that contains this structure.

uIEsLength

The length, in bytes, of the array of IEs provided at uIEsOffset.

Requirements

Requirement Value
Minimum supported client Supported starting with Windows 8.
Header windot11.h (include Windot11.h)

See also

NDIS_STATUS_DOT11_WFD_RECEIVED_GO_NEGOTIATION_REQUEST

OID_DOT11_WFD_SEND_INVITATION_RESPONSE