// bthddi.h
typedef struct _L2CAP_RETRANSMISSION_AND_FLOW_CONTROL {
UCHAR Mode;
UCHAR TxWindowSize;
UCHAR MaxTransmit;
USHORT RetransmissionTO;
USHORT MonitorTO;
USHORT MaxPDUSize;
} L2CAP_RETRANSMISSION_AND_FLOW_CONTROL, *PL2CAP_RETRANSMISSION_AND_FLOW_CONTROL;
View the official Windows Driver Kit DDI referenceNo description available.
The L2CAP_RETRANSMISSION_AND_FLOW_CONTROL structure describes configuration parameters for enhanced retransmission mode and streaming mode.
ModeRequested mode for the enhanced L2CAP channel.
TxWindowSizeSize of the transmission window for enhanced retransmission mode. The value of member is valid only when used with enhanced retransmission mode, and is ignored in streaming mode. Valid values range from 1 to 63.
MaxTransmitNumber of times a single I/S frame will be re-transmitted in case of an error. The value of this member is valid only for enhanced retransmission mode and is ignored in streaming mode. The minimum value is 1.
RetransmissionTORetransmission timeout value. Profile drivers should set this value to 0.
MonitorTOMonitor timeout. Profile drivers should set this value to 0.
MaxPDUSizeMaximum PDU Size.