blob: 5bc1015a6867d9bf1f9c63f843691be0b7e31cea [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.hardware.wifi.supplicant;
/**
* ANQP data for IEEE Std 802.11-2016.
* The format of the data within these elements follows the IEEE
* Std 802.11-2016 standard, section 9.4.5.
*/
@VintfStability
parcelable AnqpData {
byte[] venueName;
byte[] roamingConsortium;
byte[] ipAddrTypeAvailability;
byte[] naiRealm;
byte[] anqp3gppCellularNetwork;
byte[] domainName;
byte[] venueUrl;
}