beacon_request_config.proto 1.38 KB
Newer Older
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;

import public "models/sta_identity.proto";

message BeaconRequestConfig {

  // The BSSID field indicates the BSSID of the BSS(s) for which a beacon report is requested. When requesting beacon reports for all BSSs on the channel, the BSSID field contains the wildcard BSSID.
  repeated string bss_id = 1;

  // Channel number to scan. A Channel Number of 0 indicates a request to make iterative measurements for all supported channels in the Operating Class where the measurement is permitted on the channel and the channel is valid for the current regulatory domain. A Channel Number of 255 indicates a request to make iterative measurements for all supported channels in the current Operating Class listed in the latest AP Channel Report received from the serving AP.
  int32 channel_id = 2;

  // 0 for passive. 1 for active. 2 for beacon table.
  int32 measurement_mode = 3;

  // As in table T9-89 of IEEE 802.11-2012 [8].
  int32 reporting_condition = 4;

  // (Optional) The SSID subelement indicates the ESS(s) or IBSS(s) for which a beacon report is requested.
  repeated string ss_id = 5;

  StaIdentity sta_id = 6;

}