ap_associated.proto 885 Bytes
Newer Older
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
Michel Roy's avatar
Michel Roy committed
  The version of the OpenAPI document: 2.2.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;


message ApAssociated {

  // Unique number which identifies a particular association between the station and Access Point.
Michel Roy's avatar
Michel Roy committed
  string assocId = 1;
Michel Roy's avatar
Michel Roy committed
  // Basic Service Set Identifier (BSSID) is a unique identifier assigned to the Access Point (as network interface controller) for communications at the data link layer of a network segment. BSSID is typically set to an access point's MAC address.
  string bssid = 2;
Michel Roy's avatar
Michel Roy committed
  // IPv4 or IPv6 address allocated for the Access Point.
  repeated string ipAddress = 3;

  // Service Set Identifier to identify logical networks.
  repeated string ssid = 4;

}