9c0ee28670
List of changes in components/wifi_provisioning: * Manager version is now v1.1 * .proto files and protocomm handler added for sending Wi-Fi scan command and receiving scan results * Implemented handlers for wifi_scan protocomm endpoint * Update manager context data structure to hold scan state and results * scheme_softap now runs Wi-Fi in APSTA mode * Wi-Fi is started in AP mode when provisioning is started. This is necessary for scan list to work * Docs updates with information about new wifi_scan endpoint List of changes in tools/esp_prov: * Added functions for sending and receiving protobuf messages compatible with wifi_scan protocomm endpoint * Added feature to display/refresh scan results and accept user selection at runtime * New functions: * get_version() : only returns the protocol version string * has_capability() : check is a capability is present according to proto-ver response * wifi_scan feature is provided only if the `wifi_scan` capability is present Other changes: * Replace recursive mutex with plain mutex * assert on return value of mutex give / take calls * replace all calls with macros ACQUIRE_LOCK and RELEASE_LOCK * some checks added in scanning related private APIs * free and nullify scanning context and state if service is stopped while ongoing scan
522 lines
20 KiB
Python
522 lines
20 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: wifi_scan.proto
|
|
|
|
import sys
|
|
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
|
|
from google.protobuf.internal import enum_type_wrapper
|
|
from google.protobuf import descriptor as _descriptor
|
|
from google.protobuf import message as _message
|
|
from google.protobuf import reflection as _reflection
|
|
from google.protobuf import symbol_database as _symbol_database
|
|
# @@protoc_insertion_point(imports)
|
|
|
|
_sym_db = _symbol_database.Default()
|
|
|
|
|
|
import constants_pb2 as constants__pb2
|
|
import wifi_constants_pb2 as wifi__constants__pb2
|
|
|
|
|
|
DESCRIPTOR = _descriptor.FileDescriptor(
|
|
name='wifi_scan.proto',
|
|
package='',
|
|
syntax='proto3',
|
|
serialized_options=None,
|
|
serialized_pb=_b('\n\x0fwifi_scan.proto\x1a\x0f\x63onstants.proto\x1a\x14wifi_constants.proto\"\\\n\x0c\x43mdScanStart\x12\x10\n\x08\x62locking\x18\x01 \x01(\x08\x12\x0f\n\x07passive\x18\x02 \x01(\x08\x12\x16\n\x0egroup_channels\x18\x03 \x01(\r\x12\x11\n\tperiod_ms\x18\x04 \x01(\r\"\x0f\n\rRespScanStart\"\x0f\n\rCmdScanStatus\"=\n\x0eRespScanStatus\x12\x15\n\rscan_finished\x18\x01 \x01(\x08\x12\x14\n\x0cresult_count\x18\x02 \x01(\r\"3\n\rCmdScanResult\x12\x13\n\x0bstart_index\x18\x01 \x01(\r\x12\r\n\x05\x63ount\x18\x02 \x01(\r\"i\n\x0eWiFiScanResult\x12\x0c\n\x04ssid\x18\x01 \x01(\x0c\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\r\x12\x0c\n\x04rssi\x18\x03 \x01(\x05\x12\r\n\x05\x62ssid\x18\x04 \x01(\x0c\x12\x1b\n\x04\x61uth\x18\x05 \x01(\x0e\x32\r.WifiAuthMode\"2\n\x0eRespScanResult\x12 \n\x07\x65ntries\x18\x01 \x03(\x0b\x32\x0f.WiFiScanResult\"\xd8\x02\n\x0fWiFiScanPayload\x12\x1d\n\x03msg\x18\x01 \x01(\x0e\x32\x10.WiFiScanMsgType\x12\x17\n\x06status\x18\x02 \x01(\x0e\x32\x07.Status\x12\'\n\x0e\x63md_scan_start\x18\n \x01(\x0b\x32\r.CmdScanStartH\x00\x12)\n\x0fresp_scan_start\x18\x0b \x01(\x0b\x32\x0e.RespScanStartH\x00\x12)\n\x0f\x63md_scan_status\x18\x0c \x01(\x0b\x32\x0e.CmdScanStatusH\x00\x12+\n\x10resp_scan_status\x18\r \x01(\x0b\x32\x0f.RespScanStatusH\x00\x12)\n\x0f\x63md_scan_result\x18\x0e \x01(\x0b\x32\x0e.CmdScanResultH\x00\x12+\n\x10resp_scan_result\x18\x0f \x01(\x0b\x32\x0f.RespScanResultH\x00\x42\t\n\x07payload*\x9c\x01\n\x0fWiFiScanMsgType\x12\x14\n\x10TypeCmdScanStart\x10\x00\x12\x15\n\x11TypeRespScanStart\x10\x01\x12\x15\n\x11TypeCmdScanStatus\x10\x02\x12\x16\n\x12TypeRespScanStatus\x10\x03\x12\x15\n\x11TypeCmdScanResult\x10\x04\x12\x16\n\x12TypeRespScanResult\x10\x05\x62\x06proto3')
|
|
,
|
|
dependencies=[constants__pb2.DESCRIPTOR,wifi__constants__pb2.DESCRIPTOR,])
|
|
|
|
_WIFISCANMSGTYPE = _descriptor.EnumDescriptor(
|
|
name='WiFiScanMsgType',
|
|
full_name='WiFiScanMsgType',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
values=[
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeCmdScanStart', index=0, number=0,
|
|
serialized_options=None,
|
|
type=None),
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeRespScanStart', index=1, number=1,
|
|
serialized_options=None,
|
|
type=None),
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeCmdScanStatus', index=2, number=2,
|
|
serialized_options=None,
|
|
type=None),
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeRespScanStatus', index=3, number=3,
|
|
serialized_options=None,
|
|
type=None),
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeCmdScanResult', index=4, number=4,
|
|
serialized_options=None,
|
|
type=None),
|
|
_descriptor.EnumValueDescriptor(
|
|
name='TypeRespScanResult', index=5, number=5,
|
|
serialized_options=None,
|
|
type=None),
|
|
],
|
|
containing_type=None,
|
|
serialized_options=None,
|
|
serialized_start=809,
|
|
serialized_end=965,
|
|
)
|
|
_sym_db.RegisterEnumDescriptor(_WIFISCANMSGTYPE)
|
|
|
|
WiFiScanMsgType = enum_type_wrapper.EnumTypeWrapper(_WIFISCANMSGTYPE)
|
|
TypeCmdScanStart = 0
|
|
TypeRespScanStart = 1
|
|
TypeCmdScanStatus = 2
|
|
TypeRespScanStatus = 3
|
|
TypeCmdScanResult = 4
|
|
TypeRespScanResult = 5
|
|
|
|
|
|
|
|
_CMDSCANSTART = _descriptor.Descriptor(
|
|
name='CmdScanStart',
|
|
full_name='CmdScanStart',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='blocking', full_name='CmdScanStart.blocking', index=0,
|
|
number=1, type=8, cpp_type=7, label=1,
|
|
has_default_value=False, default_value=False,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='passive', full_name='CmdScanStart.passive', index=1,
|
|
number=2, type=8, cpp_type=7, label=1,
|
|
has_default_value=False, default_value=False,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='group_channels', full_name='CmdScanStart.group_channels', index=2,
|
|
number=3, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='period_ms', full_name='CmdScanStart.period_ms', index=3,
|
|
number=4, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=58,
|
|
serialized_end=150,
|
|
)
|
|
|
|
|
|
_RESPSCANSTART = _descriptor.Descriptor(
|
|
name='RespScanStart',
|
|
full_name='RespScanStart',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=152,
|
|
serialized_end=167,
|
|
)
|
|
|
|
|
|
_CMDSCANSTATUS = _descriptor.Descriptor(
|
|
name='CmdScanStatus',
|
|
full_name='CmdScanStatus',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=169,
|
|
serialized_end=184,
|
|
)
|
|
|
|
|
|
_RESPSCANSTATUS = _descriptor.Descriptor(
|
|
name='RespScanStatus',
|
|
full_name='RespScanStatus',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='scan_finished', full_name='RespScanStatus.scan_finished', index=0,
|
|
number=1, type=8, cpp_type=7, label=1,
|
|
has_default_value=False, default_value=False,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='result_count', full_name='RespScanStatus.result_count', index=1,
|
|
number=2, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=186,
|
|
serialized_end=247,
|
|
)
|
|
|
|
|
|
_CMDSCANRESULT = _descriptor.Descriptor(
|
|
name='CmdScanResult',
|
|
full_name='CmdScanResult',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='start_index', full_name='CmdScanResult.start_index', index=0,
|
|
number=1, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='count', full_name='CmdScanResult.count', index=1,
|
|
number=2, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=249,
|
|
serialized_end=300,
|
|
)
|
|
|
|
|
|
_WIFISCANRESULT = _descriptor.Descriptor(
|
|
name='WiFiScanResult',
|
|
full_name='WiFiScanResult',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='ssid', full_name='WiFiScanResult.ssid', index=0,
|
|
number=1, type=12, cpp_type=9, label=1,
|
|
has_default_value=False, default_value=_b(""),
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='channel', full_name='WiFiScanResult.channel', index=1,
|
|
number=2, type=13, cpp_type=3, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='rssi', full_name='WiFiScanResult.rssi', index=2,
|
|
number=3, type=5, cpp_type=1, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='bssid', full_name='WiFiScanResult.bssid', index=3,
|
|
number=4, type=12, cpp_type=9, label=1,
|
|
has_default_value=False, default_value=_b(""),
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='auth', full_name='WiFiScanResult.auth', index=4,
|
|
number=5, type=14, cpp_type=8, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=302,
|
|
serialized_end=407,
|
|
)
|
|
|
|
|
|
_RESPSCANRESULT = _descriptor.Descriptor(
|
|
name='RespScanResult',
|
|
full_name='RespScanResult',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='entries', full_name='RespScanResult.entries', index=0,
|
|
number=1, type=11, cpp_type=10, label=3,
|
|
has_default_value=False, default_value=[],
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
],
|
|
serialized_start=409,
|
|
serialized_end=459,
|
|
)
|
|
|
|
|
|
_WIFISCANPAYLOAD = _descriptor.Descriptor(
|
|
name='WiFiScanPayload',
|
|
full_name='WiFiScanPayload',
|
|
filename=None,
|
|
file=DESCRIPTOR,
|
|
containing_type=None,
|
|
fields=[
|
|
_descriptor.FieldDescriptor(
|
|
name='msg', full_name='WiFiScanPayload.msg', index=0,
|
|
number=1, type=14, cpp_type=8, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='status', full_name='WiFiScanPayload.status', index=1,
|
|
number=2, type=14, cpp_type=8, label=1,
|
|
has_default_value=False, default_value=0,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='cmd_scan_start', full_name='WiFiScanPayload.cmd_scan_start', index=2,
|
|
number=10, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='resp_scan_start', full_name='WiFiScanPayload.resp_scan_start', index=3,
|
|
number=11, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='cmd_scan_status', full_name='WiFiScanPayload.cmd_scan_status', index=4,
|
|
number=12, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='resp_scan_status', full_name='WiFiScanPayload.resp_scan_status', index=5,
|
|
number=13, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='cmd_scan_result', full_name='WiFiScanPayload.cmd_scan_result', index=6,
|
|
number=14, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
_descriptor.FieldDescriptor(
|
|
name='resp_scan_result', full_name='WiFiScanPayload.resp_scan_result', index=7,
|
|
number=15, type=11, cpp_type=10, label=1,
|
|
has_default_value=False, default_value=None,
|
|
message_type=None, enum_type=None, containing_type=None,
|
|
is_extension=False, extension_scope=None,
|
|
serialized_options=None, file=DESCRIPTOR),
|
|
],
|
|
extensions=[
|
|
],
|
|
nested_types=[],
|
|
enum_types=[
|
|
],
|
|
serialized_options=None,
|
|
is_extendable=False,
|
|
syntax='proto3',
|
|
extension_ranges=[],
|
|
oneofs=[
|
|
_descriptor.OneofDescriptor(
|
|
name='payload', full_name='WiFiScanPayload.payload',
|
|
index=0, containing_type=None, fields=[]),
|
|
],
|
|
serialized_start=462,
|
|
serialized_end=806,
|
|
)
|
|
|
|
_WIFISCANRESULT.fields_by_name['auth'].enum_type = wifi__constants__pb2._WIFIAUTHMODE
|
|
_RESPSCANRESULT.fields_by_name['entries'].message_type = _WIFISCANRESULT
|
|
_WIFISCANPAYLOAD.fields_by_name['msg'].enum_type = _WIFISCANMSGTYPE
|
|
_WIFISCANPAYLOAD.fields_by_name['status'].enum_type = constants__pb2._STATUS
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_start'].message_type = _CMDSCANSTART
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_start'].message_type = _RESPSCANSTART
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_status'].message_type = _CMDSCANSTATUS
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_status'].message_type = _RESPSCANSTATUS
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_result'].message_type = _CMDSCANRESULT
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_result'].message_type = _RESPSCANRESULT
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_start'])
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_start'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_start'])
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_start'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_status'])
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_status'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_status'])
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_status'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_result'])
|
|
_WIFISCANPAYLOAD.fields_by_name['cmd_scan_result'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
_WIFISCANPAYLOAD.oneofs_by_name['payload'].fields.append(
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_result'])
|
|
_WIFISCANPAYLOAD.fields_by_name['resp_scan_result'].containing_oneof = _WIFISCANPAYLOAD.oneofs_by_name['payload']
|
|
DESCRIPTOR.message_types_by_name['CmdScanStart'] = _CMDSCANSTART
|
|
DESCRIPTOR.message_types_by_name['RespScanStart'] = _RESPSCANSTART
|
|
DESCRIPTOR.message_types_by_name['CmdScanStatus'] = _CMDSCANSTATUS
|
|
DESCRIPTOR.message_types_by_name['RespScanStatus'] = _RESPSCANSTATUS
|
|
DESCRIPTOR.message_types_by_name['CmdScanResult'] = _CMDSCANRESULT
|
|
DESCRIPTOR.message_types_by_name['WiFiScanResult'] = _WIFISCANRESULT
|
|
DESCRIPTOR.message_types_by_name['RespScanResult'] = _RESPSCANRESULT
|
|
DESCRIPTOR.message_types_by_name['WiFiScanPayload'] = _WIFISCANPAYLOAD
|
|
DESCRIPTOR.enum_types_by_name['WiFiScanMsgType'] = _WIFISCANMSGTYPE
|
|
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
|
|
|
|
CmdScanStart = _reflection.GeneratedProtocolMessageType('CmdScanStart', (_message.Message,), dict(
|
|
DESCRIPTOR = _CMDSCANSTART,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:CmdScanStart)
|
|
))
|
|
_sym_db.RegisterMessage(CmdScanStart)
|
|
|
|
RespScanStart = _reflection.GeneratedProtocolMessageType('RespScanStart', (_message.Message,), dict(
|
|
DESCRIPTOR = _RESPSCANSTART,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:RespScanStart)
|
|
))
|
|
_sym_db.RegisterMessage(RespScanStart)
|
|
|
|
CmdScanStatus = _reflection.GeneratedProtocolMessageType('CmdScanStatus', (_message.Message,), dict(
|
|
DESCRIPTOR = _CMDSCANSTATUS,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:CmdScanStatus)
|
|
))
|
|
_sym_db.RegisterMessage(CmdScanStatus)
|
|
|
|
RespScanStatus = _reflection.GeneratedProtocolMessageType('RespScanStatus', (_message.Message,), dict(
|
|
DESCRIPTOR = _RESPSCANSTATUS,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:RespScanStatus)
|
|
))
|
|
_sym_db.RegisterMessage(RespScanStatus)
|
|
|
|
CmdScanResult = _reflection.GeneratedProtocolMessageType('CmdScanResult', (_message.Message,), dict(
|
|
DESCRIPTOR = _CMDSCANRESULT,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:CmdScanResult)
|
|
))
|
|
_sym_db.RegisterMessage(CmdScanResult)
|
|
|
|
WiFiScanResult = _reflection.GeneratedProtocolMessageType('WiFiScanResult', (_message.Message,), dict(
|
|
DESCRIPTOR = _WIFISCANRESULT,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:WiFiScanResult)
|
|
))
|
|
_sym_db.RegisterMessage(WiFiScanResult)
|
|
|
|
RespScanResult = _reflection.GeneratedProtocolMessageType('RespScanResult', (_message.Message,), dict(
|
|
DESCRIPTOR = _RESPSCANRESULT,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:RespScanResult)
|
|
))
|
|
_sym_db.RegisterMessage(RespScanResult)
|
|
|
|
WiFiScanPayload = _reflection.GeneratedProtocolMessageType('WiFiScanPayload', (_message.Message,), dict(
|
|
DESCRIPTOR = _WIFISCANPAYLOAD,
|
|
__module__ = 'wifi_scan_pb2'
|
|
# @@protoc_insertion_point(class_scope:WiFiScanPayload)
|
|
))
|
|
_sym_db.RegisterMessage(WiFiScanPayload)
|
|
|
|
|
|
# @@protoc_insertion_point(module_scope)
|