// bthddi.h
typedef struct _CHANNEL_CONFIG_PARAMETERS {
ULONG Flags;
CO_MTU Mtu;
CO_FLUSHTO FlushTO;
ULONG NumExtraOptions;
PL2CAP_CONFIG_OPTION ExtraOptions;
L2CAP_FLOWSPEC Flow;
} CHANNEL_CONFIG_PARAMETERS, *PCHANNEL_CONFIG_PARAMETERS;
View the official Windows Driver Kit DDI referenceNo description available.
The CHANNEL_CONFIG_PARAMETERS structure contains configuration parameters for inbound and outbound directions of a L2CAP channel.
FlagsA flag or combination of flags that specifies which members of this structure contain data. Valid flag values are listed in the following table.
| Flag | Description |
|---|---|
| CFG_EXTRA | If set, the ExtraOptions member contains data. |
| CFG_FLUSHTO | If set, the FlushTO member contains data. |
| CFG_MTU | If set, the Mtu member contains data. |
| CFG_QOS | If set, the Flow member contains data. |
MtuThe message transfer units for the specified channel direction.
FlushTOThe flush timeout for the specified channel direction.
NumExtraOptionsThe number of items specified in the array that is specified in the ExtraOptions member.
ExtraOptionsThe number of items specified in the array that is specified in the ExtraOptions member.
FlowThe QoS settings for the specified channel direction.