wlan_common/ie/wsc/constants.rs
1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// Wi-Fi Simple Configuration Technical Specification v2.0.7, Section 8.2
6pub const VENDOR_SPECIFIC_TYPE: u8 = 4;
7
8/// Wi-Fi Simple Configuration Technical Specification v2.0.7, Section 12, Table 28
9pub const DEVICE_NAME_ATTR_MAX_LEN: usize = 32;
10pub const MANUFACTURER_ATTR_MAX_LEN: usize = 64;
11pub const MODEL_NAME_ATTR_MAX_LEN: usize = 32;
12pub const MODEL_NUMBER_ATTR_MAX_LEN: usize = 32;
13pub const SERIAL_NUMBER_ATTR_MAX_LEN: usize = 32;