SCS: Add support for optional QoS Charateristics parameters

Per IEEE P802.11be/D4.0, 9.4.2.316 (QoS Characteristics element), enable
support for the following optional QoS Characteristics parameters:
 - Maximum MSDU Size
 - Service Start Time
 - Service Start Time LinkID
 - Mean Data Rate
 - Delayed Bounded Burst Size
 - MSDU Lifetime
 - MSDU Delivery Info
 - Medium Time

Signed-off-by: Purushottam Kushwaha <quic_pkushwah@quicinc.com>
This commit is contained in:
Purushottam Kushwaha 2023-04-18 19:34:19 +05:30 committed by Jouni Malinen
parent 33da386553
commit edfca280cb
4 changed files with 151 additions and 2 deletions

View file

@ -611,6 +611,22 @@ struct qos_characteristics {
u32 min_data_rate;
/* Delay Bound */
u32 delay_bound;
/* Maximum MSDU Size */
u16 max_msdu_size;
/* Service Start Time */
u32 service_start_time;
/* Service Start Time LinkID */
u8 service_start_time_link_id;
/* Mean Data Rate */
u32 mean_data_rate;
/* Delayed Bounded Burst Size */
u32 burst_size;
/* MSDU Lifetime */
u16 msdu_lifetime;
/* MSDU Delivery Info */
u8 msdu_delivery_info;
/* Medium Time */
u16 medium_time;
};