blob: 8fe138f72ba557912b618800066f9c92848f5641 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: shill_service.proto
package wifi
import (
context "context"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
empty "github.com/golang/protobuf/ptypes/empty"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Criterion checking methods.
type ExpectShillPropertyRequest_CheckMethod int32
const (
// Check if the property value is expected; if not, wait until it is expected.
ExpectShillPropertyRequest_CHECK_WAIT ExpectShillPropertyRequest_CheckMethod = 0
// Check on property change.
ExpectShillPropertyRequest_ON_CHANGE ExpectShillPropertyRequest_CheckMethod = 1
// Check if the property value is expected.
ExpectShillPropertyRequest_CHECK_ONLY ExpectShillPropertyRequest_CheckMethod = 2
)
var ExpectShillPropertyRequest_CheckMethod_name = map[int32]string{
0: "CHECK_WAIT",
1: "ON_CHANGE",
2: "CHECK_ONLY",
}
var ExpectShillPropertyRequest_CheckMethod_value = map[string]int32{
"CHECK_WAIT": 0,
"ON_CHANGE": 1,
"CHECK_ONLY": 2,
}
func (x ExpectShillPropertyRequest_CheckMethod) String() string {
return proto.EnumName(ExpectShillPropertyRequest_CheckMethod_name, int32(x))
}
func (ExpectShillPropertyRequest_CheckMethod) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{29, 0}
}
type ConnectRequest struct {
Ssid []byte `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
// hidden denotes that if the SSID is hidden.
Hidden bool `protobuf:"varint,2,opt,name=hidden,proto3" json:"hidden,omitempty"`
// security is the SecurityClass (defined in shill/service.go) of the WiFi
// service to Connect.
Security string `protobuf:"bytes,3,opt,name=security,proto3" json:"security,omitempty"`
// shillprops is the shill properties the DUT should set to Connect to the
// WiFi service.
Shillprops map[string]*ShillVal `protobuf:"bytes,4,rep,name=shillprops,proto3" json:"shillprops,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ConnectRequest) Reset() { *m = ConnectRequest{} }
func (m *ConnectRequest) String() string { return proto.CompactTextString(m) }
func (*ConnectRequest) ProtoMessage() {}
func (*ConnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{0}
}
func (m *ConnectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConnectRequest.Unmarshal(m, b)
}
func (m *ConnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ConnectRequest.Marshal(b, m, deterministic)
}
func (m *ConnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConnectRequest.Merge(m, src)
}
func (m *ConnectRequest) XXX_Size() int {
return xxx_messageInfo_ConnectRequest.Size(m)
}
func (m *ConnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ConnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ConnectRequest proto.InternalMessageInfo
func (m *ConnectRequest) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
func (m *ConnectRequest) GetHidden() bool {
if m != nil {
return m.Hidden
}
return false
}
func (m *ConnectRequest) GetSecurity() string {
if m != nil {
return m.Security
}
return ""
}
func (m *ConnectRequest) GetShillprops() map[string]*ShillVal {
if m != nil {
return m.Shillprops
}
return nil
}
type ShillVal struct {
// Types that are valid to be assigned to Val:
// *ShillVal_Str
// *ShillVal_Bool
// *ShillVal_Uint32
// *ShillVal_StrArray
// *ShillVal_Uint32Array
Val isShillVal_Val `protobuf_oneof:"val"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ShillVal) Reset() { *m = ShillVal{} }
func (m *ShillVal) String() string { return proto.CompactTextString(m) }
func (*ShillVal) ProtoMessage() {}
func (*ShillVal) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{1}
}
func (m *ShillVal) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ShillVal.Unmarshal(m, b)
}
func (m *ShillVal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ShillVal.Marshal(b, m, deterministic)
}
func (m *ShillVal) XXX_Merge(src proto.Message) {
xxx_messageInfo_ShillVal.Merge(m, src)
}
func (m *ShillVal) XXX_Size() int {
return xxx_messageInfo_ShillVal.Size(m)
}
func (m *ShillVal) XXX_DiscardUnknown() {
xxx_messageInfo_ShillVal.DiscardUnknown(m)
}
var xxx_messageInfo_ShillVal proto.InternalMessageInfo
type isShillVal_Val interface {
isShillVal_Val()
}
type ShillVal_Str struct {
Str string `protobuf:"bytes,1,opt,name=str,proto3,oneof"`
}
type ShillVal_Bool struct {
Bool bool `protobuf:"varint,2,opt,name=bool,proto3,oneof"`
}
type ShillVal_Uint32 struct {
Uint32 uint32 `protobuf:"varint,3,opt,name=uint32,proto3,oneof"`
}
type ShillVal_StrArray struct {
StrArray *StrArray `protobuf:"bytes,4,opt,name=str_array,json=strArray,proto3,oneof"`
}
type ShillVal_Uint32Array struct {
Uint32Array *Uint32Array `protobuf:"bytes,5,opt,name=uint32_array,json=uint32Array,proto3,oneof"`
}
func (*ShillVal_Str) isShillVal_Val() {}
func (*ShillVal_Bool) isShillVal_Val() {}
func (*ShillVal_Uint32) isShillVal_Val() {}
func (*ShillVal_StrArray) isShillVal_Val() {}
func (*ShillVal_Uint32Array) isShillVal_Val() {}
func (m *ShillVal) GetVal() isShillVal_Val {
if m != nil {
return m.Val
}
return nil
}
func (m *ShillVal) GetStr() string {
if x, ok := m.GetVal().(*ShillVal_Str); ok {
return x.Str
}
return ""
}
func (m *ShillVal) GetBool() bool {
if x, ok := m.GetVal().(*ShillVal_Bool); ok {
return x.Bool
}
return false
}
func (m *ShillVal) GetUint32() uint32 {
if x, ok := m.GetVal().(*ShillVal_Uint32); ok {
return x.Uint32
}
return 0
}
func (m *ShillVal) GetStrArray() *StrArray {
if x, ok := m.GetVal().(*ShillVal_StrArray); ok {
return x.StrArray
}
return nil
}
func (m *ShillVal) GetUint32Array() *Uint32Array {
if x, ok := m.GetVal().(*ShillVal_Uint32Array); ok {
return x.Uint32Array
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*ShillVal) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*ShillVal_Str)(nil),
(*ShillVal_Bool)(nil),
(*ShillVal_Uint32)(nil),
(*ShillVal_StrArray)(nil),
(*ShillVal_Uint32Array)(nil),
}
}
type StrArray struct {
Vals []string `protobuf:"bytes,1,rep,name=vals,proto3" json:"vals,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StrArray) Reset() { *m = StrArray{} }
func (m *StrArray) String() string { return proto.CompactTextString(m) }
func (*StrArray) ProtoMessage() {}
func (*StrArray) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{2}
}
func (m *StrArray) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StrArray.Unmarshal(m, b)
}
func (m *StrArray) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StrArray.Marshal(b, m, deterministic)
}
func (m *StrArray) XXX_Merge(src proto.Message) {
xxx_messageInfo_StrArray.Merge(m, src)
}
func (m *StrArray) XXX_Size() int {
return xxx_messageInfo_StrArray.Size(m)
}
func (m *StrArray) XXX_DiscardUnknown() {
xxx_messageInfo_StrArray.DiscardUnknown(m)
}
var xxx_messageInfo_StrArray proto.InternalMessageInfo
func (m *StrArray) GetVals() []string {
if m != nil {
return m.Vals
}
return nil
}
type Uint32Array struct {
Vals []uint32 `protobuf:"varint,1,rep,packed,name=vals,proto3" json:"vals,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Uint32Array) Reset() { *m = Uint32Array{} }
func (m *Uint32Array) String() string { return proto.CompactTextString(m) }
func (*Uint32Array) ProtoMessage() {}
func (*Uint32Array) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{3}
}
func (m *Uint32Array) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Uint32Array.Unmarshal(m, b)
}
func (m *Uint32Array) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Uint32Array.Marshal(b, m, deterministic)
}
func (m *Uint32Array) XXX_Merge(src proto.Message) {
xxx_messageInfo_Uint32Array.Merge(m, src)
}
func (m *Uint32Array) XXX_Size() int {
return xxx_messageInfo_Uint32Array.Size(m)
}
func (m *Uint32Array) XXX_DiscardUnknown() {
xxx_messageInfo_Uint32Array.DiscardUnknown(m)
}
var xxx_messageInfo_Uint32Array proto.InternalMessageInfo
func (m *Uint32Array) GetVals() []uint32 {
if m != nil {
return m.Vals
}
return nil
}
// ConnectResponse is the response of Connect call which includes the
// object path of connected service and timing data of the connection
// (all time in nanosecond unit).
type ConnectResponse struct {
ServicePath string `protobuf:"bytes,1,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
DiscoveryTime int64 `protobuf:"varint,2,opt,name=discovery_time,json=discoveryTime,proto3" json:"discovery_time,omitempty"`
AssociationTime int64 `protobuf:"varint,3,opt,name=association_time,json=associationTime,proto3" json:"association_time,omitempty"`
ConfigurationTime int64 `protobuf:"varint,4,opt,name=configuration_time,json=configurationTime,proto3" json:"configuration_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ConnectResponse) Reset() { *m = ConnectResponse{} }
func (m *ConnectResponse) String() string { return proto.CompactTextString(m) }
func (*ConnectResponse) ProtoMessage() {}
func (*ConnectResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{4}
}
func (m *ConnectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConnectResponse.Unmarshal(m, b)
}
func (m *ConnectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ConnectResponse.Marshal(b, m, deterministic)
}
func (m *ConnectResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConnectResponse.Merge(m, src)
}
func (m *ConnectResponse) XXX_Size() int {
return xxx_messageInfo_ConnectResponse.Size(m)
}
func (m *ConnectResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ConnectResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ConnectResponse proto.InternalMessageInfo
func (m *ConnectResponse) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
func (m *ConnectResponse) GetDiscoveryTime() int64 {
if m != nil {
return m.DiscoveryTime
}
return 0
}
func (m *ConnectResponse) GetAssociationTime() int64 {
if m != nil {
return m.AssociationTime
}
return 0
}
func (m *ConnectResponse) GetConfigurationTime() int64 {
if m != nil {
return m.ConfigurationTime
}
return 0
}
type DiscoverBSSIDRequest struct {
Bssid string `protobuf:"bytes,1,opt,name=bssid,proto3" json:"bssid,omitempty"`
Interface string `protobuf:"bytes,2,opt,name=interface,proto3" json:"interface,omitempty"`
Ssid []byte `protobuf:"bytes,3,opt,name=ssid,proto3" json:"ssid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiscoverBSSIDRequest) Reset() { *m = DiscoverBSSIDRequest{} }
func (m *DiscoverBSSIDRequest) String() string { return proto.CompactTextString(m) }
func (*DiscoverBSSIDRequest) ProtoMessage() {}
func (*DiscoverBSSIDRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{5}
}
func (m *DiscoverBSSIDRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiscoverBSSIDRequest.Unmarshal(m, b)
}
func (m *DiscoverBSSIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiscoverBSSIDRequest.Marshal(b, m, deterministic)
}
func (m *DiscoverBSSIDRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoverBSSIDRequest.Merge(m, src)
}
func (m *DiscoverBSSIDRequest) XXX_Size() int {
return xxx_messageInfo_DiscoverBSSIDRequest.Size(m)
}
func (m *DiscoverBSSIDRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DiscoverBSSIDRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DiscoverBSSIDRequest proto.InternalMessageInfo
func (m *DiscoverBSSIDRequest) GetBssid() string {
if m != nil {
return m.Bssid
}
return ""
}
func (m *DiscoverBSSIDRequest) GetInterface() string {
if m != nil {
return m.Interface
}
return ""
}
func (m *DiscoverBSSIDRequest) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
type DiscoverBSSIDResponse struct {
DiscoveryTime int64 `protobuf:"varint,1,opt,name=discovery_time,json=discoveryTime,proto3" json:"discovery_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiscoverBSSIDResponse) Reset() { *m = DiscoverBSSIDResponse{} }
func (m *DiscoverBSSIDResponse) String() string { return proto.CompactTextString(m) }
func (*DiscoverBSSIDResponse) ProtoMessage() {}
func (*DiscoverBSSIDResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{6}
}
func (m *DiscoverBSSIDResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiscoverBSSIDResponse.Unmarshal(m, b)
}
func (m *DiscoverBSSIDResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiscoverBSSIDResponse.Marshal(b, m, deterministic)
}
func (m *DiscoverBSSIDResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiscoverBSSIDResponse.Merge(m, src)
}
func (m *DiscoverBSSIDResponse) XXX_Size() int {
return xxx_messageInfo_DiscoverBSSIDResponse.Size(m)
}
func (m *DiscoverBSSIDResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DiscoverBSSIDResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DiscoverBSSIDResponse proto.InternalMessageInfo
func (m *DiscoverBSSIDResponse) GetDiscoveryTime() int64 {
if m != nil {
return m.DiscoveryTime
}
return 0
}
type DisconnectRequest struct {
ServicePath string `protobuf:"bytes,1,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
RemoveProfile bool `protobuf:"varint,2,opt,name=remove_profile,json=removeProfile,proto3" json:"remove_profile,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DisconnectRequest) Reset() { *m = DisconnectRequest{} }
func (m *DisconnectRequest) String() string { return proto.CompactTextString(m) }
func (*DisconnectRequest) ProtoMessage() {}
func (*DisconnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{7}
}
func (m *DisconnectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DisconnectRequest.Unmarshal(m, b)
}
func (m *DisconnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DisconnectRequest.Marshal(b, m, deterministic)
}
func (m *DisconnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DisconnectRequest.Merge(m, src)
}
func (m *DisconnectRequest) XXX_Size() int {
return xxx_messageInfo_DisconnectRequest.Size(m)
}
func (m *DisconnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DisconnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DisconnectRequest proto.InternalMessageInfo
func (m *DisconnectRequest) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
func (m *DisconnectRequest) GetRemoveProfile() bool {
if m != nil {
return m.RemoveProfile
}
return false
}
type DeleteEntriesForSSIDRequest struct {
Ssid []byte `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteEntriesForSSIDRequest) Reset() { *m = DeleteEntriesForSSIDRequest{} }
func (m *DeleteEntriesForSSIDRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteEntriesForSSIDRequest) ProtoMessage() {}
func (*DeleteEntriesForSSIDRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{8}
}
func (m *DeleteEntriesForSSIDRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteEntriesForSSIDRequest.Unmarshal(m, b)
}
func (m *DeleteEntriesForSSIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteEntriesForSSIDRequest.Marshal(b, m, deterministic)
}
func (m *DeleteEntriesForSSIDRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteEntriesForSSIDRequest.Merge(m, src)
}
func (m *DeleteEntriesForSSIDRequest) XXX_Size() int {
return xxx_messageInfo_DeleteEntriesForSSIDRequest.Size(m)
}
func (m *DeleteEntriesForSSIDRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteEntriesForSSIDRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteEntriesForSSIDRequest proto.InternalMessageInfo
func (m *DeleteEntriesForSSIDRequest) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
type QueryServiceRequest struct {
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *QueryServiceRequest) Reset() { *m = QueryServiceRequest{} }
func (m *QueryServiceRequest) String() string { return proto.CompactTextString(m) }
func (*QueryServiceRequest) ProtoMessage() {}
func (*QueryServiceRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{9}
}
func (m *QueryServiceRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QueryServiceRequest.Unmarshal(m, b)
}
func (m *QueryServiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_QueryServiceRequest.Marshal(b, m, deterministic)
}
func (m *QueryServiceRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_QueryServiceRequest.Merge(m, src)
}
func (m *QueryServiceRequest) XXX_Size() int {
return xxx_messageInfo_QueryServiceRequest.Size(m)
}
func (m *QueryServiceRequest) XXX_DiscardUnknown() {
xxx_messageInfo_QueryServiceRequest.DiscardUnknown(m)
}
var xxx_messageInfo_QueryServiceRequest proto.InternalMessageInfo
func (m *QueryServiceRequest) GetPath() string {
if m != nil {
return m.Path
}
return ""
}
type QueryServiceResponse struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Device string `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
Mode string `protobuf:"bytes,4,opt,name=mode,proto3" json:"mode,omitempty"`
State string `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"`
Visible bool `protobuf:"varint,6,opt,name=visible,proto3" json:"visible,omitempty"`
IsConnected bool `protobuf:"varint,7,opt,name=is_connected,json=isConnected,proto3" json:"is_connected,omitempty"`
Wifi *QueryServiceResponse_Wifi `protobuf:"bytes,8,opt,name=wifi,proto3" json:"wifi,omitempty"`
Guid string `protobuf:"bytes,9,opt,name=guid,proto3" json:"guid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *QueryServiceResponse) Reset() { *m = QueryServiceResponse{} }
func (m *QueryServiceResponse) String() string { return proto.CompactTextString(m) }
func (*QueryServiceResponse) ProtoMessage() {}
func (*QueryServiceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{10}
}
func (m *QueryServiceResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QueryServiceResponse.Unmarshal(m, b)
}
func (m *QueryServiceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_QueryServiceResponse.Marshal(b, m, deterministic)
}
func (m *QueryServiceResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_QueryServiceResponse.Merge(m, src)
}
func (m *QueryServiceResponse) XXX_Size() int {
return xxx_messageInfo_QueryServiceResponse.Size(m)
}
func (m *QueryServiceResponse) XXX_DiscardUnknown() {
xxx_messageInfo_QueryServiceResponse.DiscardUnknown(m)
}
var xxx_messageInfo_QueryServiceResponse proto.InternalMessageInfo
func (m *QueryServiceResponse) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *QueryServiceResponse) GetDevice() string {
if m != nil {
return m.Device
}
return ""
}
func (m *QueryServiceResponse) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *QueryServiceResponse) GetMode() string {
if m != nil {
return m.Mode
}
return ""
}
func (m *QueryServiceResponse) GetState() string {
if m != nil {
return m.State
}
return ""
}
func (m *QueryServiceResponse) GetVisible() bool {
if m != nil {
return m.Visible
}
return false
}
func (m *QueryServiceResponse) GetIsConnected() bool {
if m != nil {
return m.IsConnected
}
return false
}
func (m *QueryServiceResponse) GetWifi() *QueryServiceResponse_Wifi {
if m != nil {
return m.Wifi
}
return nil
}
func (m *QueryServiceResponse) GetGuid() string {
if m != nil {
return m.Guid
}
return ""
}
type QueryServiceResponse_Wifi struct {
Bssid string `protobuf:"bytes,1,opt,name=bssid,proto3" json:"bssid,omitempty"`
Frequency uint32 `protobuf:"varint,2,opt,name=frequency,proto3" json:"frequency,omitempty"`
FrequencyList []uint32 `protobuf:"varint,3,rep,packed,name=frequency_list,json=frequencyList,proto3" json:"frequency_list,omitempty"`
HexSsid string `protobuf:"bytes,4,opt,name=hex_ssid,json=hexSsid,proto3" json:"hex_ssid,omitempty"`
HiddenSsid bool `protobuf:"varint,5,opt,name=hidden_ssid,json=hiddenSsid,proto3" json:"hidden_ssid,omitempty"`
PhyMode uint32 `protobuf:"varint,6,opt,name=phy_mode,json=phyMode,proto3" json:"phy_mode,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *QueryServiceResponse_Wifi) Reset() { *m = QueryServiceResponse_Wifi{} }
func (m *QueryServiceResponse_Wifi) String() string { return proto.CompactTextString(m) }
func (*QueryServiceResponse_Wifi) ProtoMessage() {}
func (*QueryServiceResponse_Wifi) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{10, 0}
}
func (m *QueryServiceResponse_Wifi) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QueryServiceResponse_Wifi.Unmarshal(m, b)
}
func (m *QueryServiceResponse_Wifi) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_QueryServiceResponse_Wifi.Marshal(b, m, deterministic)
}
func (m *QueryServiceResponse_Wifi) XXX_Merge(src proto.Message) {
xxx_messageInfo_QueryServiceResponse_Wifi.Merge(m, src)
}
func (m *QueryServiceResponse_Wifi) XXX_Size() int {
return xxx_messageInfo_QueryServiceResponse_Wifi.Size(m)
}
func (m *QueryServiceResponse_Wifi) XXX_DiscardUnknown() {
xxx_messageInfo_QueryServiceResponse_Wifi.DiscardUnknown(m)
}
var xxx_messageInfo_QueryServiceResponse_Wifi proto.InternalMessageInfo
func (m *QueryServiceResponse_Wifi) GetBssid() string {
if m != nil {
return m.Bssid
}
return ""
}
func (m *QueryServiceResponse_Wifi) GetFrequency() uint32 {
if m != nil {
return m.Frequency
}
return 0
}
func (m *QueryServiceResponse_Wifi) GetFrequencyList() []uint32 {
if m != nil {
return m.FrequencyList
}
return nil
}
func (m *QueryServiceResponse_Wifi) GetHexSsid() string {
if m != nil {
return m.HexSsid
}
return ""
}
func (m *QueryServiceResponse_Wifi) GetHiddenSsid() bool {
if m != nil {
return m.HiddenSsid
}
return false
}
func (m *QueryServiceResponse_Wifi) GetPhyMode() uint32 {
if m != nil {
return m.PhyMode
}
return 0
}
type GetInterfaceResponse struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetInterfaceResponse) Reset() { *m = GetInterfaceResponse{} }
func (m *GetInterfaceResponse) String() string { return proto.CompactTextString(m) }
func (*GetInterfaceResponse) ProtoMessage() {}
func (*GetInterfaceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{11}
}
func (m *GetInterfaceResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInterfaceResponse.Unmarshal(m, b)
}
func (m *GetInterfaceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetInterfaceResponse.Marshal(b, m, deterministic)
}
func (m *GetInterfaceResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetInterfaceResponse.Merge(m, src)
}
func (m *GetInterfaceResponse) XXX_Size() int {
return xxx_messageInfo_GetInterfaceResponse.Size(m)
}
func (m *GetInterfaceResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetInterfaceResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetInterfaceResponse proto.InternalMessageInfo
func (m *GetInterfaceResponse) GetName() string {
if m != nil {
return m.Name
}
return ""
}
type GetIPv4AddrsRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interface_name,json=interfaceName,proto3" json:"interface_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetIPv4AddrsRequest) Reset() { *m = GetIPv4AddrsRequest{} }
func (m *GetIPv4AddrsRequest) String() string { return proto.CompactTextString(m) }
func (*GetIPv4AddrsRequest) ProtoMessage() {}
func (*GetIPv4AddrsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{12}
}
func (m *GetIPv4AddrsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetIPv4AddrsRequest.Unmarshal(m, b)
}
func (m *GetIPv4AddrsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetIPv4AddrsRequest.Marshal(b, m, deterministic)
}
func (m *GetIPv4AddrsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetIPv4AddrsRequest.Merge(m, src)
}
func (m *GetIPv4AddrsRequest) XXX_Size() int {
return xxx_messageInfo_GetIPv4AddrsRequest.Size(m)
}
func (m *GetIPv4AddrsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetIPv4AddrsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetIPv4AddrsRequest proto.InternalMessageInfo
func (m *GetIPv4AddrsRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
type GetIPv4AddrsResponse struct {
Ipv4 []string `protobuf:"bytes,1,rep,name=ipv4,proto3" json:"ipv4,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetIPv4AddrsResponse) Reset() { *m = GetIPv4AddrsResponse{} }
func (m *GetIPv4AddrsResponse) String() string { return proto.CompactTextString(m) }
func (*GetIPv4AddrsResponse) ProtoMessage() {}
func (*GetIPv4AddrsResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{13}
}
func (m *GetIPv4AddrsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetIPv4AddrsResponse.Unmarshal(m, b)
}
func (m *GetIPv4AddrsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetIPv4AddrsResponse.Marshal(b, m, deterministic)
}
func (m *GetIPv4AddrsResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetIPv4AddrsResponse.Merge(m, src)
}
func (m *GetIPv4AddrsResponse) XXX_Size() int {
return xxx_messageInfo_GetIPv4AddrsResponse.Size(m)
}
func (m *GetIPv4AddrsResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetIPv4AddrsResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetIPv4AddrsResponse proto.InternalMessageInfo
func (m *GetIPv4AddrsResponse) GetIpv4() []string {
if m != nil {
return m.Ipv4
}
return nil
}
type GetHardwareAddrRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interfaceName,proto3" json:"interfaceName,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetHardwareAddrRequest) Reset() { *m = GetHardwareAddrRequest{} }
func (m *GetHardwareAddrRequest) String() string { return proto.CompactTextString(m) }
func (*GetHardwareAddrRequest) ProtoMessage() {}
func (*GetHardwareAddrRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{14}
}
func (m *GetHardwareAddrRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetHardwareAddrRequest.Unmarshal(m, b)
}
func (m *GetHardwareAddrRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetHardwareAddrRequest.Marshal(b, m, deterministic)
}
func (m *GetHardwareAddrRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetHardwareAddrRequest.Merge(m, src)
}
func (m *GetHardwareAddrRequest) XXX_Size() int {
return xxx_messageInfo_GetHardwareAddrRequest.Size(m)
}
func (m *GetHardwareAddrRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetHardwareAddrRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetHardwareAddrRequest proto.InternalMessageInfo
func (m *GetHardwareAddrRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
type GetHardwareAddrResponse struct {
HwAddr string `protobuf:"bytes,1,opt,name=hw_addr,json=hwAddr,proto3" json:"hw_addr,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetHardwareAddrResponse) Reset() { *m = GetHardwareAddrResponse{} }
func (m *GetHardwareAddrResponse) String() string { return proto.CompactTextString(m) }
func (*GetHardwareAddrResponse) ProtoMessage() {}
func (*GetHardwareAddrResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{15}
}
func (m *GetHardwareAddrResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetHardwareAddrResponse.Unmarshal(m, b)
}
func (m *GetHardwareAddrResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetHardwareAddrResponse.Marshal(b, m, deterministic)
}
func (m *GetHardwareAddrResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetHardwareAddrResponse.Merge(m, src)
}
func (m *GetHardwareAddrResponse) XXX_Size() int {
return xxx_messageInfo_GetHardwareAddrResponse.Size(m)
}
func (m *GetHardwareAddrResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetHardwareAddrResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetHardwareAddrResponse proto.InternalMessageInfo
func (m *GetHardwareAddrResponse) GetHwAddr() string {
if m != nil {
return m.HwAddr
}
return ""
}
type ExpectWifiFrequenciesRequest struct {
// SSID to look up. Required.
Ssid []byte `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
// Expected list of frequencies for the SSID.
Frequencies []uint32 `protobuf:"varint,2,rep,packed,name=frequencies,proto3" json:"frequencies,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExpectWifiFrequenciesRequest) Reset() { *m = ExpectWifiFrequenciesRequest{} }
func (m *ExpectWifiFrequenciesRequest) String() string { return proto.CompactTextString(m) }
func (*ExpectWifiFrequenciesRequest) ProtoMessage() {}
func (*ExpectWifiFrequenciesRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{16}
}
func (m *ExpectWifiFrequenciesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExpectWifiFrequenciesRequest.Unmarshal(m, b)
}
func (m *ExpectWifiFrequenciesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExpectWifiFrequenciesRequest.Marshal(b, m, deterministic)
}
func (m *ExpectWifiFrequenciesRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExpectWifiFrequenciesRequest.Merge(m, src)
}
func (m *ExpectWifiFrequenciesRequest) XXX_Size() int {
return xxx_messageInfo_ExpectWifiFrequenciesRequest.Size(m)
}
func (m *ExpectWifiFrequenciesRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ExpectWifiFrequenciesRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ExpectWifiFrequenciesRequest proto.InternalMessageInfo
func (m *ExpectWifiFrequenciesRequest) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
func (m *ExpectWifiFrequenciesRequest) GetFrequencies() []uint32 {
if m != nil {
return m.Frequencies
}
return nil
}
type BgscanConfig struct {
Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
// ShortInterval time in seconds, only value in uint16 range is valid as dbus property type is uint16.
ShortInterval uint32 `protobuf:"varint,2,opt,name=short_interval,json=shortInterval,proto3" json:"short_interval,omitempty"`
// LongInterval time in seconds, only value in uint16 range is valid as dbus property type is uint16.
LongInterval uint32 `protobuf:"varint,3,opt,name=long_interval,json=longInterval,proto3" json:"long_interval,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgscanConfig) Reset() { *m = BgscanConfig{} }
func (m *BgscanConfig) String() string { return proto.CompactTextString(m) }
func (*BgscanConfig) ProtoMessage() {}
func (*BgscanConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{17}
}
func (m *BgscanConfig) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgscanConfig.Unmarshal(m, b)
}
func (m *BgscanConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgscanConfig.Marshal(b, m, deterministic)
}
func (m *BgscanConfig) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgscanConfig.Merge(m, src)
}
func (m *BgscanConfig) XXX_Size() int {
return xxx_messageInfo_BgscanConfig.Size(m)
}
func (m *BgscanConfig) XXX_DiscardUnknown() {
xxx_messageInfo_BgscanConfig.DiscardUnknown(m)
}
var xxx_messageInfo_BgscanConfig proto.InternalMessageInfo
func (m *BgscanConfig) GetMethod() string {
if m != nil {
return m.Method
}
return ""
}
func (m *BgscanConfig) GetShortInterval() uint32 {
if m != nil {
return m.ShortInterval
}
return 0
}
func (m *BgscanConfig) GetLongInterval() uint32 {
if m != nil {
return m.LongInterval
}
return 0
}
type GetBgscanConfigResponse struct {
Config *BgscanConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetBgscanConfigResponse) Reset() { *m = GetBgscanConfigResponse{} }
func (m *GetBgscanConfigResponse) String() string { return proto.CompactTextString(m) }
func (*GetBgscanConfigResponse) ProtoMessage() {}
func (*GetBgscanConfigResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{18}
}
func (m *GetBgscanConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBgscanConfigResponse.Unmarshal(m, b)
}
func (m *GetBgscanConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBgscanConfigResponse.Marshal(b, m, deterministic)
}
func (m *GetBgscanConfigResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBgscanConfigResponse.Merge(m, src)
}
func (m *GetBgscanConfigResponse) XXX_Size() int {
return xxx_messageInfo_GetBgscanConfigResponse.Size(m)
}
func (m *GetBgscanConfigResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetBgscanConfigResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetBgscanConfigResponse proto.InternalMessageInfo
func (m *GetBgscanConfigResponse) GetConfig() *BgscanConfig {
if m != nil {
return m.Config
}
return nil
}
type SetBgscanConfigRequest struct {
Config *BgscanConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetBgscanConfigRequest) Reset() { *m = SetBgscanConfigRequest{} }
func (m *SetBgscanConfigRequest) String() string { return proto.CompactTextString(m) }
func (*SetBgscanConfigRequest) ProtoMessage() {}
func (*SetBgscanConfigRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{19}
}
func (m *SetBgscanConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetBgscanConfigRequest.Unmarshal(m, b)
}
func (m *SetBgscanConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetBgscanConfigRequest.Marshal(b, m, deterministic)
}
func (m *SetBgscanConfigRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetBgscanConfigRequest.Merge(m, src)
}
func (m *SetBgscanConfigRequest) XXX_Size() int {
return xxx_messageInfo_SetBgscanConfigRequest.Size(m)
}
func (m *SetBgscanConfigRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetBgscanConfigRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetBgscanConfigRequest proto.InternalMessageInfo
func (m *SetBgscanConfigRequest) GetConfig() *BgscanConfig {
if m != nil {
return m.Config
}
return nil
}
type AssureDisconnectRequest struct {
ServicePath string `protobuf:"bytes,1,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
Timeout int64 `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AssureDisconnectRequest) Reset() { *m = AssureDisconnectRequest{} }
func (m *AssureDisconnectRequest) String() string { return proto.CompactTextString(m) }
func (*AssureDisconnectRequest) ProtoMessage() {}
func (*AssureDisconnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{20}
}
func (m *AssureDisconnectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AssureDisconnectRequest.Unmarshal(m, b)
}
func (m *AssureDisconnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AssureDisconnectRequest.Marshal(b, m, deterministic)
}
func (m *AssureDisconnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AssureDisconnectRequest.Merge(m, src)
}
func (m *AssureDisconnectRequest) XXX_Size() int {
return xxx_messageInfo_AssureDisconnectRequest.Size(m)
}
func (m *AssureDisconnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AssureDisconnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AssureDisconnectRequest proto.InternalMessageInfo
func (m *AssureDisconnectRequest) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
func (m *AssureDisconnectRequest) GetTimeout() int64 {
if m != nil {
return m.Timeout
}
return 0
}
type DisableEnableTestRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interface_name,json=interfaceName,proto3" json:"interface_name,omitempty"`
ServicePath string `protobuf:"bytes,2,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DisableEnableTestRequest) Reset() { *m = DisableEnableTestRequest{} }
func (m *DisableEnableTestRequest) String() string { return proto.CompactTextString(m) }
func (*DisableEnableTestRequest) ProtoMessage() {}
func (*DisableEnableTestRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{21}
}
func (m *DisableEnableTestRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DisableEnableTestRequest.Unmarshal(m, b)
}
func (m *DisableEnableTestRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DisableEnableTestRequest.Marshal(b, m, deterministic)
}
func (m *DisableEnableTestRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DisableEnableTestRequest.Merge(m, src)
}
func (m *DisableEnableTestRequest) XXX_Size() int {
return xxx_messageInfo_DisableEnableTestRequest.Size(m)
}
func (m *DisableEnableTestRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DisableEnableTestRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DisableEnableTestRequest proto.InternalMessageInfo
func (m *DisableEnableTestRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
func (m *DisableEnableTestRequest) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
type RequestScansRequest struct {
Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RequestScansRequest) Reset() { *m = RequestScansRequest{} }
func (m *RequestScansRequest) String() string { return proto.CompactTextString(m) }
func (*RequestScansRequest) ProtoMessage() {}
func (*RequestScansRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{22}
}
func (m *RequestScansRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RequestScansRequest.Unmarshal(m, b)
}
func (m *RequestScansRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RequestScansRequest.Marshal(b, m, deterministic)
}
func (m *RequestScansRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_RequestScansRequest.Merge(m, src)
}
func (m *RequestScansRequest) XXX_Size() int {
return xxx_messageInfo_RequestScansRequest.Size(m)
}
func (m *RequestScansRequest) XXX_DiscardUnknown() {
xxx_messageInfo_RequestScansRequest.DiscardUnknown(m)
}
var xxx_messageInfo_RequestScansRequest proto.InternalMessageInfo
func (m *RequestScansRequest) GetCount() int32 {
if m != nil {
return m.Count
}
return 0
}
type SetMACRandomizeRequest struct {
Enable bool `protobuf:"varint,1,opt,name=enable,proto3" json:"enable,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetMACRandomizeRequest) Reset() { *m = SetMACRandomizeRequest{} }
func (m *SetMACRandomizeRequest) String() string { return proto.CompactTextString(m) }
func (*SetMACRandomizeRequest) ProtoMessage() {}
func (*SetMACRandomizeRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{23}
}
func (m *SetMACRandomizeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetMACRandomizeRequest.Unmarshal(m, b)
}
func (m *SetMACRandomizeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetMACRandomizeRequest.Marshal(b, m, deterministic)
}
func (m *SetMACRandomizeRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetMACRandomizeRequest.Merge(m, src)
}
func (m *SetMACRandomizeRequest) XXX_Size() int {
return xxx_messageInfo_SetMACRandomizeRequest.Size(m)
}
func (m *SetMACRandomizeRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetMACRandomizeRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetMACRandomizeRequest proto.InternalMessageInfo
func (m *SetMACRandomizeRequest) GetEnable() bool {
if m != nil {
return m.Enable
}
return false
}
type SetMACRandomizeResponse struct {
OldSetting bool `protobuf:"varint,1,opt,name=old_setting,json=oldSetting,proto3" json:"old_setting,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetMACRandomizeResponse) Reset() { *m = SetMACRandomizeResponse{} }
func (m *SetMACRandomizeResponse) String() string { return proto.CompactTextString(m) }
func (*SetMACRandomizeResponse) ProtoMessage() {}
func (*SetMACRandomizeResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{24}
}
func (m *SetMACRandomizeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetMACRandomizeResponse.Unmarshal(m, b)
}
func (m *SetMACRandomizeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetMACRandomizeResponse.Marshal(b, m, deterministic)
}
func (m *SetMACRandomizeResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetMACRandomizeResponse.Merge(m, src)
}
func (m *SetMACRandomizeResponse) XXX_Size() int {
return xxx_messageInfo_SetMACRandomizeResponse.Size(m)
}
func (m *SetMACRandomizeResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SetMACRandomizeResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SetMACRandomizeResponse proto.InternalMessageInfo
func (m *SetMACRandomizeResponse) GetOldSetting() bool {
if m != nil {
return m.OldSetting
}
return false
}
type ConfigureAndAssertAutoConnectRequest struct {
Props map[string]*ShillVal `protobuf:"bytes,1,rep,name=props,proto3" json:"props,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ConfigureAndAssertAutoConnectRequest) Reset() { *m = ConfigureAndAssertAutoConnectRequest{} }
func (m *ConfigureAndAssertAutoConnectRequest) String() string { return proto.CompactTextString(m) }
func (*ConfigureAndAssertAutoConnectRequest) ProtoMessage() {}
func (*ConfigureAndAssertAutoConnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{25}
}
func (m *ConfigureAndAssertAutoConnectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConfigureAndAssertAutoConnectRequest.Unmarshal(m, b)
}
func (m *ConfigureAndAssertAutoConnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ConfigureAndAssertAutoConnectRequest.Marshal(b, m, deterministic)
}
func (m *ConfigureAndAssertAutoConnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConfigureAndAssertAutoConnectRequest.Merge(m, src)
}
func (m *ConfigureAndAssertAutoConnectRequest) XXX_Size() int {
return xxx_messageInfo_ConfigureAndAssertAutoConnectRequest.Size(m)
}
func (m *ConfigureAndAssertAutoConnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ConfigureAndAssertAutoConnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ConfigureAndAssertAutoConnectRequest proto.InternalMessageInfo
func (m *ConfigureAndAssertAutoConnectRequest) GetProps() map[string]*ShillVal {
if m != nil {
return m.Props
}
return nil
}
type ConfigureAndAssertAutoConnectResponse struct {
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ConfigureAndAssertAutoConnectResponse) Reset() { *m = ConfigureAndAssertAutoConnectResponse{} }
func (m *ConfigureAndAssertAutoConnectResponse) String() string { return proto.CompactTextString(m) }
func (*ConfigureAndAssertAutoConnectResponse) ProtoMessage() {}
func (*ConfigureAndAssertAutoConnectResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{26}
}
func (m *ConfigureAndAssertAutoConnectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConfigureAndAssertAutoConnectResponse.Unmarshal(m, b)
}
func (m *ConfigureAndAssertAutoConnectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ConfigureAndAssertAutoConnectResponse.Marshal(b, m, deterministic)
}
func (m *ConfigureAndAssertAutoConnectResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConfigureAndAssertAutoConnectResponse.Merge(m, src)
}
func (m *ConfigureAndAssertAutoConnectResponse) XXX_Size() int {
return xxx_messageInfo_ConfigureAndAssertAutoConnectResponse.Size(m)
}
func (m *ConfigureAndAssertAutoConnectResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ConfigureAndAssertAutoConnectResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ConfigureAndAssertAutoConnectResponse proto.InternalMessageInfo
func (m *ConfigureAndAssertAutoConnectResponse) GetPath() string {
if m != nil {
return m.Path
}
return ""
}
type GetCurrentTimeResponse struct {
NowSecond int64 `protobuf:"varint,1,opt,name=now_second,json=nowSecond,proto3" json:"now_second,omitempty"`
NowNanosecond int64 `protobuf:"varint,2,opt,name=now_nanosecond,json=nowNanosecond,proto3" json:"now_nanosecond,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetCurrentTimeResponse) Reset() { *m = GetCurrentTimeResponse{} }
func (m *GetCurrentTimeResponse) String() string { return proto.CompactTextString(m) }
func (*GetCurrentTimeResponse) ProtoMessage() {}
func (*GetCurrentTimeResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{27}
}
func (m *GetCurrentTimeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetCurrentTimeResponse.Unmarshal(m, b)
}
func (m *GetCurrentTimeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetCurrentTimeResponse.Marshal(b, m, deterministic)
}
func (m *GetCurrentTimeResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetCurrentTimeResponse.Merge(m, src)
}
func (m *GetCurrentTimeResponse) XXX_Size() int {
return xxx_messageInfo_GetCurrentTimeResponse.Size(m)
}
func (m *GetCurrentTimeResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetCurrentTimeResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetCurrentTimeResponse proto.InternalMessageInfo
func (m *GetCurrentTimeResponse) GetNowSecond() int64 {
if m != nil {
return m.NowSecond
}
return 0
}
func (m *GetCurrentTimeResponse) GetNowNanosecond() int64 {
if m != nil {
return m.NowNanosecond
}
return 0
}
type SelectedServiceResponse struct {
ServicePath string `protobuf:"bytes,1,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SelectedServiceResponse) Reset() { *m = SelectedServiceResponse{} }
func (m *SelectedServiceResponse) String() string { return proto.CompactTextString(m) }
func (*SelectedServiceResponse) ProtoMessage() {}
func (*SelectedServiceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{28}
}
func (m *SelectedServiceResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SelectedServiceResponse.Unmarshal(m, b)
}
func (m *SelectedServiceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SelectedServiceResponse.Marshal(b, m, deterministic)
}
func (m *SelectedServiceResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SelectedServiceResponse.Merge(m, src)
}
func (m *SelectedServiceResponse) XXX_Size() int {
return xxx_messageInfo_SelectedServiceResponse.Size(m)
}
func (m *SelectedServiceResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SelectedServiceResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SelectedServiceResponse proto.InternalMessageInfo
func (m *SelectedServiceResponse) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
type ExpectShillPropertyRequest struct {
// Shill object path (e.g. Service or Device).
ObjectPath string `protobuf:"bytes,1,opt,name=object_path,json=objectPath,proto3" json:"object_path,omitempty"`
Props []*ExpectShillPropertyRequest_Criterion `protobuf:"bytes,2,rep,name=props,proto3" json:"props,omitempty"`
MonitorProps []string `protobuf:"bytes,3,rep,name=monitor_props,json=monitorProps,proto3" json:"monitor_props,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExpectShillPropertyRequest) Reset() { *m = ExpectShillPropertyRequest{} }
func (m *ExpectShillPropertyRequest) String() string { return proto.CompactTextString(m) }
func (*ExpectShillPropertyRequest) ProtoMessage() {}
func (*ExpectShillPropertyRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{29}
}
func (m *ExpectShillPropertyRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExpectShillPropertyRequest.Unmarshal(m, b)
}
func (m *ExpectShillPropertyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExpectShillPropertyRequest.Marshal(b, m, deterministic)
}
func (m *ExpectShillPropertyRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExpectShillPropertyRequest.Merge(m, src)
}
func (m *ExpectShillPropertyRequest) XXX_Size() int {
return xxx_messageInfo_ExpectShillPropertyRequest.Size(m)
}
func (m *ExpectShillPropertyRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ExpectShillPropertyRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ExpectShillPropertyRequest proto.InternalMessageInfo
func (m *ExpectShillPropertyRequest) GetObjectPath() string {
if m != nil {
return m.ObjectPath
}
return ""
}
func (m *ExpectShillPropertyRequest) GetProps() []*ExpectShillPropertyRequest_Criterion {
if m != nil {
return m.Props
}
return nil
}
func (m *ExpectShillPropertyRequest) GetMonitorProps() []string {
if m != nil {
return m.MonitorProps
}
return nil
}
type ExpectShillPropertyRequest_Criterion struct {
// The shill property name.
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// The expected property values.
AnyOf []*ShillVal `protobuf:"bytes,2,rep,name=any_of,json=anyOf,proto3" json:"any_of,omitempty"`
// The unexpected property values.
NoneOf []*ShillVal `protobuf:"bytes,3,rep,name=none_of,json=noneOf,proto3" json:"none_of,omitempty"`
Method ExpectShillPropertyRequest_CheckMethod `protobuf:"varint,4,opt,name=method,proto3,enum=tast.cros.wifi.ExpectShillPropertyRequest_CheckMethod" json:"method,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExpectShillPropertyRequest_Criterion) Reset() { *m = ExpectShillPropertyRequest_Criterion{} }
func (m *ExpectShillPropertyRequest_Criterion) String() string { return proto.CompactTextString(m) }
func (*ExpectShillPropertyRequest_Criterion) ProtoMessage() {}
func (*ExpectShillPropertyRequest_Criterion) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{29, 0}
}
func (m *ExpectShillPropertyRequest_Criterion) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExpectShillPropertyRequest_Criterion.Unmarshal(m, b)
}
func (m *ExpectShillPropertyRequest_Criterion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExpectShillPropertyRequest_Criterion.Marshal(b, m, deterministic)
}
func (m *ExpectShillPropertyRequest_Criterion) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExpectShillPropertyRequest_Criterion.Merge(m, src)
}
func (m *ExpectShillPropertyRequest_Criterion) XXX_Size() int {
return xxx_messageInfo_ExpectShillPropertyRequest_Criterion.Size(m)
}
func (m *ExpectShillPropertyRequest_Criterion) XXX_DiscardUnknown() {
xxx_messageInfo_ExpectShillPropertyRequest_Criterion.DiscardUnknown(m)
}
var xxx_messageInfo_ExpectShillPropertyRequest_Criterion proto.InternalMessageInfo
func (m *ExpectShillPropertyRequest_Criterion) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *ExpectShillPropertyRequest_Criterion) GetAnyOf() []*ShillVal {
if m != nil {
return m.AnyOf
}
return nil
}
func (m *ExpectShillPropertyRequest_Criterion) GetNoneOf() []*ShillVal {
if m != nil {
return m.NoneOf
}
return nil
}
func (m *ExpectShillPropertyRequest_Criterion) GetMethod() ExpectShillPropertyRequest_CheckMethod {
if m != nil {
return m.Method
}
return ExpectShillPropertyRequest_CHECK_WAIT
}
type ShillPropertyChangedSignal struct {
Prop string `protobuf:"bytes,1,opt,name=prop,proto3" json:"prop,omitempty"`
Val *ShillVal `protobuf:"bytes,2,opt,name=val,proto3" json:"val,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ShillPropertyChangedSignal) Reset() { *m = ShillPropertyChangedSignal{} }
func (m *ShillPropertyChangedSignal) String() string { return proto.CompactTextString(m) }
func (*ShillPropertyChangedSignal) ProtoMessage() {}
func (*ShillPropertyChangedSignal) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{30}
}
func (m *ShillPropertyChangedSignal) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ShillPropertyChangedSignal.Unmarshal(m, b)
}
func (m *ShillPropertyChangedSignal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ShillPropertyChangedSignal.Marshal(b, m, deterministic)
}
func (m *ShillPropertyChangedSignal) XXX_Merge(src proto.Message) {
xxx_messageInfo_ShillPropertyChangedSignal.Merge(m, src)
}
func (m *ShillPropertyChangedSignal) XXX_Size() int {
return xxx_messageInfo_ShillPropertyChangedSignal.Size(m)
}
func (m *ShillPropertyChangedSignal) XXX_DiscardUnknown() {
xxx_messageInfo_ShillPropertyChangedSignal.DiscardUnknown(m)
}
var xxx_messageInfo_ShillPropertyChangedSignal proto.InternalMessageInfo
func (m *ShillPropertyChangedSignal) GetProp() string {
if m != nil {
return m.Prop
}
return ""
}
func (m *ShillPropertyChangedSignal) GetVal() *ShillVal {
if m != nil {
return m.Val
}
return nil
}
type ExpectShillPropertyResponse struct {
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
Val *ShillVal `protobuf:"bytes,2,opt,name=val,proto3" json:"val,omitempty"`
Props []*ShillPropertyChangedSignal `protobuf:"bytes,3,rep,name=props,proto3" json:"props,omitempty"`
MonitorDone bool `protobuf:"varint,4,opt,name=monitor_done,json=monitorDone,proto3" json:"monitor_done,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExpectShillPropertyResponse) Reset() { *m = ExpectShillPropertyResponse{} }
func (m *ExpectShillPropertyResponse) String() string { return proto.CompactTextString(m) }
func (*ExpectShillPropertyResponse) ProtoMessage() {}
func (*ExpectShillPropertyResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{31}
}
func (m *ExpectShillPropertyResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExpectShillPropertyResponse.Unmarshal(m, b)
}
func (m *ExpectShillPropertyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExpectShillPropertyResponse.Marshal(b, m, deterministic)
}
func (m *ExpectShillPropertyResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExpectShillPropertyResponse.Merge(m, src)
}
func (m *ExpectShillPropertyResponse) XXX_Size() int {
return xxx_messageInfo_ExpectShillPropertyResponse.Size(m)
}
func (m *ExpectShillPropertyResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ExpectShillPropertyResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ExpectShillPropertyResponse proto.InternalMessageInfo
func (m *ExpectShillPropertyResponse) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *ExpectShillPropertyResponse) GetVal() *ShillVal {
if m != nil {
return m.Val
}
return nil
}
func (m *ExpectShillPropertyResponse) GetProps() []*ShillPropertyChangedSignal {
if m != nil {
return m.Props
}
return nil
}
func (m *ExpectShillPropertyResponse) GetMonitorDone() bool {
if m != nil {
return m.MonitorDone
}
return false
}
type ProfileBasicTestRequest struct {
Ap0 *ProfileBasicTestRequest_Config `protobuf:"bytes,1,opt,name=ap0,proto3" json:"ap0,omitempty"`
Ap1 *ProfileBasicTestRequest_Config `protobuf:"bytes,2,opt,name=ap1,proto3" json:"ap1,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ProfileBasicTestRequest) Reset() { *m = ProfileBasicTestRequest{} }
func (m *ProfileBasicTestRequest) String() string { return proto.CompactTextString(m) }
func (*ProfileBasicTestRequest) ProtoMessage() {}
func (*ProfileBasicTestRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{32}
}
func (m *ProfileBasicTestRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ProfileBasicTestRequest.Unmarshal(m, b)
}
func (m *ProfileBasicTestRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ProfileBasicTestRequest.Marshal(b, m, deterministic)
}
func (m *ProfileBasicTestRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ProfileBasicTestRequest.Merge(m, src)
}
func (m *ProfileBasicTestRequest) XXX_Size() int {
return xxx_messageInfo_ProfileBasicTestRequest.Size(m)
}
func (m *ProfileBasicTestRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ProfileBasicTestRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ProfileBasicTestRequest proto.InternalMessageInfo
func (m *ProfileBasicTestRequest) GetAp0() *ProfileBasicTestRequest_Config {
if m != nil {
return m.Ap0
}
return nil
}
func (m *ProfileBasicTestRequest) GetAp1() *ProfileBasicTestRequest_Config {
if m != nil {
return m.Ap1
}
return nil
}
// The configuration for connecting to a certain AP, as like ConnectRequest.
type ProfileBasicTestRequest_Config struct {
Ssid []byte `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
Security string `protobuf:"bytes,2,opt,name=security,proto3" json:"security,omitempty"`
Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
ShillProps map[string]*ShillVal `protobuf:"bytes,4,rep,name=shill_props,json=shillProps,proto3" json:"shill_props,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ProfileBasicTestRequest_Config) Reset() { *m = ProfileBasicTestRequest_Config{} }
func (m *ProfileBasicTestRequest_Config) String() string { return proto.CompactTextString(m) }
func (*ProfileBasicTestRequest_Config) ProtoMessage() {}
func (*ProfileBasicTestRequest_Config) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{32, 0}
}
func (m *ProfileBasicTestRequest_Config) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ProfileBasicTestRequest_Config.Unmarshal(m, b)
}
func (m *ProfileBasicTestRequest_Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ProfileBasicTestRequest_Config.Marshal(b, m, deterministic)
}
func (m *ProfileBasicTestRequest_Config) XXX_Merge(src proto.Message) {
xxx_messageInfo_ProfileBasicTestRequest_Config.Merge(m, src)
}
func (m *ProfileBasicTestRequest_Config) XXX_Size() int {
return xxx_messageInfo_ProfileBasicTestRequest_Config.Size(m)
}
func (m *ProfileBasicTestRequest_Config) XXX_DiscardUnknown() {
xxx_messageInfo_ProfileBasicTestRequest_Config.DiscardUnknown(m)
}
var xxx_messageInfo_ProfileBasicTestRequest_Config proto.InternalMessageInfo
func (m *ProfileBasicTestRequest_Config) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
func (m *ProfileBasicTestRequest_Config) GetSecurity() string {
if m != nil {
return m.Security
}
return ""
}
func (m *ProfileBasicTestRequest_Config) GetIp() string {
if m != nil {
return m.Ip
}
return ""
}
func (m *ProfileBasicTestRequest_Config) GetShillProps() map[string]*ShillVal {
if m != nil {
return m.ShillProps
}
return nil
}
type RequestRoamRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interface_name,json=interfaceName,proto3" json:"interface_name,omitempty"`
Bssid string `protobuf:"bytes,2,opt,name=bssid,proto3" json:"bssid,omitempty"`
Timeout int64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RequestRoamRequest) Reset() { *m = RequestRoamRequest{} }
func (m *RequestRoamRequest) String() string { return proto.CompactTextString(m) }
func (*RequestRoamRequest) ProtoMessage() {}
func (*RequestRoamRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{33}
}
func (m *RequestRoamRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RequestRoamRequest.Unmarshal(m, b)
}
func (m *RequestRoamRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RequestRoamRequest.Marshal(b, m, deterministic)
}
func (m *RequestRoamRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_RequestRoamRequest.Merge(m, src)
}
func (m *RequestRoamRequest) XXX_Size() int {
return xxx_messageInfo_RequestRoamRequest.Size(m)
}
func (m *RequestRoamRequest) XXX_DiscardUnknown() {
xxx_messageInfo_RequestRoamRequest.DiscardUnknown(m)
}
var xxx_messageInfo_RequestRoamRequest proto.InternalMessageInfo
func (m *RequestRoamRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
func (m *RequestRoamRequest) GetBssid() string {
if m != nil {
return m.Bssid
}
return ""
}
func (m *RequestRoamRequest) GetTimeout() int64 {
if m != nil {
return m.Timeout
}
return 0
}
type DHCPProperties struct {
VendorClass string `protobuf:"bytes,1,opt,name=vendor_class,json=vendorClass,proto3" json:"vendor_class,omitempty"`
Hostname string `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DHCPProperties) Reset() { *m = DHCPProperties{} }
func (m *DHCPProperties) String() string { return proto.CompactTextString(m) }
func (*DHCPProperties) ProtoMessage() {}
func (*DHCPProperties) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{34}
}
func (m *DHCPProperties) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DHCPProperties.Unmarshal(m, b)
}
func (m *DHCPProperties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DHCPProperties.Marshal(b, m, deterministic)
}
func (m *DHCPProperties) XXX_Merge(src proto.Message) {
xxx_messageInfo_DHCPProperties.Merge(m, src)
}
func (m *DHCPProperties) XXX_Size() int {
return xxx_messageInfo_DHCPProperties.Size(m)
}
func (m *DHCPProperties) XXX_DiscardUnknown() {
xxx_messageInfo_DHCPProperties.DiscardUnknown(m)
}
var xxx_messageInfo_DHCPProperties proto.InternalMessageInfo
func (m *DHCPProperties) GetVendorClass() string {
if m != nil {
return m.VendorClass
}
return ""
}
func (m *DHCPProperties) GetHostname() string {
if m != nil {
return m.Hostname
}
return ""
}
type SetDHCPPropertiesRequest struct {
Props *DHCPProperties `protobuf:"bytes,1,opt,name=props,proto3" json:"props,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetDHCPPropertiesRequest) Reset() { *m = SetDHCPPropertiesRequest{} }
func (m *SetDHCPPropertiesRequest) String() string { return proto.CompactTextString(m) }
func (*SetDHCPPropertiesRequest) ProtoMessage() {}
func (*SetDHCPPropertiesRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{35}
}
func (m *SetDHCPPropertiesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetDHCPPropertiesRequest.Unmarshal(m, b)
}
func (m *SetDHCPPropertiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetDHCPPropertiesRequest.Marshal(b, m, deterministic)
}
func (m *SetDHCPPropertiesRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetDHCPPropertiesRequest.Merge(m, src)
}
func (m *SetDHCPPropertiesRequest) XXX_Size() int {
return xxx_messageInfo_SetDHCPPropertiesRequest.Size(m)
}
func (m *SetDHCPPropertiesRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetDHCPPropertiesRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetDHCPPropertiesRequest proto.InternalMessageInfo
func (m *SetDHCPPropertiesRequest) GetProps() *DHCPProperties {
if m != nil {
return m.Props
}
return nil
}
type SetDHCPPropertiesResponse struct {
Props *DHCPProperties `protobuf:"bytes,1,opt,name=props,proto3" json:"props,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetDHCPPropertiesResponse) Reset() { *m = SetDHCPPropertiesResponse{} }
func (m *SetDHCPPropertiesResponse) String() string { return proto.CompactTextString(m) }
func (*SetDHCPPropertiesResponse) ProtoMessage() {}
func (*SetDHCPPropertiesResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{36}
}
func (m *SetDHCPPropertiesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetDHCPPropertiesResponse.Unmarshal(m, b)
}
func (m *SetDHCPPropertiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetDHCPPropertiesResponse.Marshal(b, m, deterministic)
}
func (m *SetDHCPPropertiesResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetDHCPPropertiesResponse.Merge(m, src)
}
func (m *SetDHCPPropertiesResponse) XXX_Size() int {
return xxx_messageInfo_SetDHCPPropertiesResponse.Size(m)
}
func (m *SetDHCPPropertiesResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SetDHCPPropertiesResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SetDHCPPropertiesResponse proto.InternalMessageInfo
func (m *SetDHCPPropertiesResponse) GetProps() *DHCPProperties {
if m != nil {
return m.Props
}
return nil
}
type ReassociateRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interface_name,json=interfaceName,proto3" json:"interface_name,omitempty"`
Timeout int64 `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReassociateRequest) Reset() { *m = ReassociateRequest{} }
func (m *ReassociateRequest) String() string { return proto.CompactTextString(m) }
func (*ReassociateRequest) ProtoMessage() {}
func (*ReassociateRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{37}
}
func (m *ReassociateRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReassociateRequest.Unmarshal(m, b)
}
func (m *ReassociateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReassociateRequest.Marshal(b, m, deterministic)
}
func (m *ReassociateRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReassociateRequest.Merge(m, src)
}
func (m *ReassociateRequest) XXX_Size() int {
return xxx_messageInfo_ReassociateRequest.Size(m)
}
func (m *ReassociateRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ReassociateRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ReassociateRequest proto.InternalMessageInfo
func (m *ReassociateRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
func (m *ReassociateRequest) GetTimeout() int64 {
if m != nil {
return m.Timeout
}
return 0
}
type GetWifiEnabledResponse struct {
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetWifiEnabledResponse) Reset() { *m = GetWifiEnabledResponse{} }
func (m *GetWifiEnabledResponse) String() string { return proto.CompactTextString(m) }
func (*GetWifiEnabledResponse) ProtoMessage() {}
func (*GetWifiEnabledResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{38}
}
func (m *GetWifiEnabledResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetWifiEnabledResponse.Unmarshal(m, b)
}
func (m *GetWifiEnabledResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetWifiEnabledResponse.Marshal(b, m, deterministic)
}
func (m *GetWifiEnabledResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetWifiEnabledResponse.Merge(m, src)
}
func (m *GetWifiEnabledResponse) XXX_Size() int {
return xxx_messageInfo_GetWifiEnabledResponse.Size(m)
}
func (m *GetWifiEnabledResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetWifiEnabledResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetWifiEnabledResponse proto.InternalMessageInfo
func (m *GetWifiEnabledResponse) GetEnabled() bool {
if m != nil {
return m.Enabled
}
return false
}
type SetWifiEnabledRequest struct {
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetWifiEnabledRequest) Reset() { *m = SetWifiEnabledRequest{} }
func (m *SetWifiEnabledRequest) String() string { return proto.CompactTextString(m) }
func (*SetWifiEnabledRequest) ProtoMessage() {}
func (*SetWifiEnabledRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{39}
}
func (m *SetWifiEnabledRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetWifiEnabledRequest.Unmarshal(m, b)
}
func (m *SetWifiEnabledRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetWifiEnabledRequest.Marshal(b, m, deterministic)
}
func (m *SetWifiEnabledRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetWifiEnabledRequest.Merge(m, src)
}
func (m *SetWifiEnabledRequest) XXX_Size() int {
return xxx_messageInfo_SetWifiEnabledRequest.Size(m)
}
func (m *SetWifiEnabledRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetWifiEnabledRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetWifiEnabledRequest proto.InternalMessageInfo
func (m *SetWifiEnabledRequest) GetEnabled() bool {
if m != nil {
return m.Enabled
}
return false
}
type WaitForBSSIDRequest struct {
Ssid []byte `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
Bssid string `protobuf:"bytes,2,opt,name=bssid,proto3" json:"bssid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WaitForBSSIDRequest) Reset() { *m = WaitForBSSIDRequest{} }
func (m *WaitForBSSIDRequest) String() string { return proto.CompactTextString(m) }
func (*WaitForBSSIDRequest) ProtoMessage() {}
func (*WaitForBSSIDRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{40}
}
func (m *WaitForBSSIDRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WaitForBSSIDRequest.Unmarshal(m, b)
}
func (m *WaitForBSSIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WaitForBSSIDRequest.Marshal(b, m, deterministic)
}
func (m *WaitForBSSIDRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_WaitForBSSIDRequest.Merge(m, src)
}
func (m *WaitForBSSIDRequest) XXX_Size() int {
return xxx_messageInfo_WaitForBSSIDRequest.Size(m)
}
func (m *WaitForBSSIDRequest) XXX_DiscardUnknown() {
xxx_messageInfo_WaitForBSSIDRequest.DiscardUnknown(m)
}
var xxx_messageInfo_WaitForBSSIDRequest proto.InternalMessageInfo
func (m *WaitForBSSIDRequest) GetSsid() []byte {
if m != nil {
return m.Ssid
}
return nil
}
func (m *WaitForBSSIDRequest) GetBssid() string {
if m != nil {
return m.Bssid
}
return ""
}
type MACRandomizeSupportResponse struct {
Supported bool `protobuf:"varint,1,opt,name=supported,proto3" json:"supported,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MACRandomizeSupportResponse) Reset() { *m = MACRandomizeSupportResponse{} }
func (m *MACRandomizeSupportResponse) String() string { return proto.CompactTextString(m) }
func (*MACRandomizeSupportResponse) ProtoMessage() {}
func (*MACRandomizeSupportResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{41}
}
func (m *MACRandomizeSupportResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MACRandomizeSupportResponse.Unmarshal(m, b)
}
func (m *MACRandomizeSupportResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MACRandomizeSupportResponse.Marshal(b, m, deterministic)
}
func (m *MACRandomizeSupportResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MACRandomizeSupportResponse.Merge(m, src)
}
func (m *MACRandomizeSupportResponse) XXX_Size() int {
return xxx_messageInfo_MACRandomizeSupportResponse.Size(m)
}
func (m *MACRandomizeSupportResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MACRandomizeSupportResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MACRandomizeSupportResponse proto.InternalMessageInfo
func (m *MACRandomizeSupportResponse) GetSupported() bool {
if m != nil {
return m.Supported
}
return false
}
type GetMACRandomizeResponse struct {
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMACRandomizeResponse) Reset() { *m = GetMACRandomizeResponse{} }
func (m *GetMACRandomizeResponse) String() string { return proto.CompactTextString(m) }
func (*GetMACRandomizeResponse) ProtoMessage() {}
func (*GetMACRandomizeResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{42}
}
func (m *GetMACRandomizeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMACRandomizeResponse.Unmarshal(m, b)
}
func (m *GetMACRandomizeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMACRandomizeResponse.Marshal(b, m, deterministic)
}
func (m *GetMACRandomizeResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMACRandomizeResponse.Merge(m, src)
}
func (m *GetMACRandomizeResponse) XXX_Size() int {
return xxx_messageInfo_GetMACRandomizeResponse.Size(m)
}
func (m *GetMACRandomizeResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetMACRandomizeResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetMACRandomizeResponse proto.InternalMessageInfo
func (m *GetMACRandomizeResponse) GetEnabled() bool {
if m != nil {
return m.Enabled
}
return false
}
type EAPAuthSkippedResponse struct {
Skipped bool `protobuf:"varint,1,opt,name=skipped,proto3" json:"skipped,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EAPAuthSkippedResponse) Reset() { *m = EAPAuthSkippedResponse{} }
func (m *EAPAuthSkippedResponse) String() string { return proto.CompactTextString(m) }
func (*EAPAuthSkippedResponse) ProtoMessage() {}
func (*EAPAuthSkippedResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{43}
}
func (m *EAPAuthSkippedResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EAPAuthSkippedResponse.Unmarshal(m, b)
}
func (m *EAPAuthSkippedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EAPAuthSkippedResponse.Marshal(b, m, deterministic)
}
func (m *EAPAuthSkippedResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EAPAuthSkippedResponse.Merge(m, src)
}
func (m *EAPAuthSkippedResponse) XXX_Size() int {
return xxx_messageInfo_EAPAuthSkippedResponse.Size(m)
}
func (m *EAPAuthSkippedResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EAPAuthSkippedResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EAPAuthSkippedResponse proto.InternalMessageInfo
func (m *EAPAuthSkippedResponse) GetSkipped() bool {
if m != nil {
return m.Skipped
}
return false
}
type DisconnectReasonResponse struct {
Reason int32 `protobuf:"varint,1,opt,name=reason,proto3" json:"reason,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DisconnectReasonResponse) Reset() { *m = DisconnectReasonResponse{} }
func (m *DisconnectReasonResponse) String() string { return proto.CompactTextString(m) }
func (*DisconnectReasonResponse) ProtoMessage() {}
func (*DisconnectReasonResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{44}
}
func (m *DisconnectReasonResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DisconnectReasonResponse.Unmarshal(m, b)
}
func (m *DisconnectReasonResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DisconnectReasonResponse.Marshal(b, m, deterministic)
}
func (m *DisconnectReasonResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DisconnectReasonResponse.Merge(m, src)
}
func (m *DisconnectReasonResponse) XXX_Size() int {
return xxx_messageInfo_DisconnectReasonResponse.Size(m)
}
func (m *DisconnectReasonResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DisconnectReasonResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DisconnectReasonResponse proto.InternalMessageInfo
func (m *DisconnectReasonResponse) GetReason() int32 {
if m != nil {
return m.Reason
}
return 0
}
type SuspendAssertConnectRequest struct {
WakeUpTimeout int64 `protobuf:"varint,1,opt,name=wake_up_timeout,json=wakeUpTimeout,proto3" json:"wake_up_timeout,omitempty"`
ServicePath string `protobuf:"bytes,2,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SuspendAssertConnectRequest) Reset() { *m = SuspendAssertConnectRequest{} }
func (m *SuspendAssertConnectRequest) String() string { return proto.CompactTextString(m) }
func (*SuspendAssertConnectRequest) ProtoMessage() {}
func (*SuspendAssertConnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{45}
}
func (m *SuspendAssertConnectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SuspendAssertConnectRequest.Unmarshal(m, b)
}
func (m *SuspendAssertConnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SuspendAssertConnectRequest.Marshal(b, m, deterministic)
}
func (m *SuspendAssertConnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SuspendAssertConnectRequest.Merge(m, src)
}
func (m *SuspendAssertConnectRequest) XXX_Size() int {
return xxx_messageInfo_SuspendAssertConnectRequest.Size(m)
}
func (m *SuspendAssertConnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SuspendAssertConnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SuspendAssertConnectRequest proto.InternalMessageInfo
func (m *SuspendAssertConnectRequest) GetWakeUpTimeout() int64 {
if m != nil {
return m.WakeUpTimeout
}
return 0
}
func (m *SuspendAssertConnectRequest) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
type SuspendAssertConnectResponse struct {
ReconnectTime int64 `protobuf:"varint,1,opt,name=reconnect_time,json=reconnectTime,proto3" json:"reconnect_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SuspendAssertConnectResponse) Reset() { *m = SuspendAssertConnectResponse{} }
func (m *SuspendAssertConnectResponse) String() string { return proto.CompactTextString(m) }
func (*SuspendAssertConnectResponse) ProtoMessage() {}
func (*SuspendAssertConnectResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{46}
}
func (m *SuspendAssertConnectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SuspendAssertConnectResponse.Unmarshal(m, b)
}
func (m *SuspendAssertConnectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SuspendAssertConnectResponse.Marshal(b, m, deterministic)
}
func (m *SuspendAssertConnectResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SuspendAssertConnectResponse.Merge(m, src)
}
func (m *SuspendAssertConnectResponse) XXX_Size() int {
return xxx_messageInfo_SuspendAssertConnectResponse.Size(m)
}
func (m *SuspendAssertConnectResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SuspendAssertConnectResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SuspendAssertConnectResponse proto.InternalMessageInfo
func (m *SuspendAssertConnectResponse) GetReconnectTime() int64 {
if m != nil {
return m.ReconnectTime
}
return 0
}
type SuspendRequest struct {
WakeUpTimeout int64 `protobuf:"varint,1,opt,name=wake_up_timeout,json=wakeUpTimeout,proto3" json:"wake_up_timeout,omitempty"`
CheckEarlyWake bool `protobuf:"varint,2,opt,name=check_early_wake,json=checkEarlyWake,proto3" json:"check_early_wake,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SuspendRequest) Reset() { *m = SuspendRequest{} }
func (m *SuspendRequest) String() string { return proto.CompactTextString(m) }
func (*SuspendRequest) ProtoMessage() {}
func (*SuspendRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{47}
}
func (m *SuspendRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SuspendRequest.Unmarshal(m, b)
}
func (m *SuspendRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SuspendRequest.Marshal(b, m, deterministic)
}
func (m *SuspendRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SuspendRequest.Merge(m, src)
}
func (m *SuspendRequest) XXX_Size() int {
return xxx_messageInfo_SuspendRequest.Size(m)
}
func (m *SuspendRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SuspendRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SuspendRequest proto.InternalMessageInfo
func (m *SuspendRequest) GetWakeUpTimeout() int64 {
if m != nil {
return m.WakeUpTimeout
}
return 0
}
func (m *SuspendRequest) GetCheckEarlyWake() bool {
if m != nil {
return m.CheckEarlyWake
}
return false
}
type SuspendResponse struct {
SuspendTime int64 `protobuf:"varint,1,opt,name=suspend_time,json=suspendTime,proto3" json:"suspend_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SuspendResponse) Reset() { *m = SuspendResponse{} }
func (m *SuspendResponse) String() string { return proto.CompactTextString(m) }
func (*SuspendResponse) ProtoMessage() {}
func (*SuspendResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{48}
}
func (m *SuspendResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SuspendResponse.Unmarshal(m, b)
}
func (m *SuspendResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SuspendResponse.Marshal(b, m, deterministic)
}
func (m *SuspendResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SuspendResponse.Merge(m, src)
}
func (m *SuspendResponse) XXX_Size() int {
return xxx_messageInfo_SuspendResponse.Size(m)
}
func (m *SuspendResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SuspendResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SuspendResponse proto.InternalMessageInfo
func (m *SuspendResponse) GetSuspendTime() int64 {
if m != nil {
return m.SuspendTime
}
return 0
}
type GetGlobalFTPropertyResponse struct {
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGlobalFTPropertyResponse) Reset() { *m = GetGlobalFTPropertyResponse{} }
func (m *GetGlobalFTPropertyResponse) String() string { return proto.CompactTextString(m) }
func (*GetGlobalFTPropertyResponse) ProtoMessage() {}
func (*GetGlobalFTPropertyResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{49}
}
func (m *GetGlobalFTPropertyResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGlobalFTPropertyResponse.Unmarshal(m, b)
}
func (m *GetGlobalFTPropertyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGlobalFTPropertyResponse.Marshal(b, m, deterministic)
}
func (m *GetGlobalFTPropertyResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGlobalFTPropertyResponse.Merge(m, src)
}
func (m *GetGlobalFTPropertyResponse) XXX_Size() int {
return xxx_messageInfo_GetGlobalFTPropertyResponse.Size(m)
}
func (m *GetGlobalFTPropertyResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetGlobalFTPropertyResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetGlobalFTPropertyResponse proto.InternalMessageInfo
func (m *GetGlobalFTPropertyResponse) GetEnabled() bool {
if m != nil {
return m.Enabled
}
return false
}
type SetGlobalFTPropertyRequest struct {
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetGlobalFTPropertyRequest) Reset() { *m = SetGlobalFTPropertyRequest{} }
func (m *SetGlobalFTPropertyRequest) String() string { return proto.CompactTextString(m) }
func (*SetGlobalFTPropertyRequest) ProtoMessage() {}
func (*SetGlobalFTPropertyRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{50}
}
func (m *SetGlobalFTPropertyRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGlobalFTPropertyRequest.Unmarshal(m, b)
}
func (m *SetGlobalFTPropertyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetGlobalFTPropertyRequest.Marshal(b, m, deterministic)
}
func (m *SetGlobalFTPropertyRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGlobalFTPropertyRequest.Merge(m, src)
}
func (m *SetGlobalFTPropertyRequest) XXX_Size() int {
return xxx_messageInfo_SetGlobalFTPropertyRequest.Size(m)
}
func (m *SetGlobalFTPropertyRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetGlobalFTPropertyRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetGlobalFTPropertyRequest proto.InternalMessageInfo
func (m *SetGlobalFTPropertyRequest) GetEnabled() bool {
if m != nil {
return m.Enabled
}
return false
}
type InitDUTRequest struct {
WithUi bool `protobuf:"varint,1,opt,name=with_ui,json=withUi,proto3" json:"with_ui,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *InitDUTRequest) Reset() { *m = InitDUTRequest{} }
func (m *InitDUTRequest) String() string { return proto.CompactTextString(m) }
func (*InitDUTRequest) ProtoMessage() {}
func (*InitDUTRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{51}
}
func (m *InitDUTRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InitDUTRequest.Unmarshal(m, b)
}
func (m *InitDUTRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InitDUTRequest.Marshal(b, m, deterministic)
}
func (m *InitDUTRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_InitDUTRequest.Merge(m, src)
}
func (m *InitDUTRequest) XXX_Size() int {
return xxx_messageInfo_InitDUTRequest.Size(m)
}
func (m *InitDUTRequest) XXX_DiscardUnknown() {
xxx_messageInfo_InitDUTRequest.DiscardUnknown(m)
}
var xxx_messageInfo_InitDUTRequest proto.InternalMessageInfo
func (m *InitDUTRequest) GetWithUi() bool {
if m != nil {
return m.WithUi
}
return false
}
type FlushBSSRequest struct {
InterfaceName string `protobuf:"bytes,1,opt,name=interface_name,json=interfaceName,proto3" json:"interface_name,omitempty"`
Age int64 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *FlushBSSRequest) Reset() { *m = FlushBSSRequest{} }
func (m *FlushBSSRequest) String() string { return proto.CompactTextString(m) }
func (*FlushBSSRequest) ProtoMessage() {}
func (*FlushBSSRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{52}
}
func (m *FlushBSSRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FlushBSSRequest.Unmarshal(m, b)
}
func (m *FlushBSSRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FlushBSSRequest.Marshal(b, m, deterministic)
}
func (m *FlushBSSRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_FlushBSSRequest.Merge(m, src)
}
func (m *FlushBSSRequest) XXX_Size() int {
return xxx_messageInfo_FlushBSSRequest.Size(m)
}
func (m *FlushBSSRequest) XXX_DiscardUnknown() {
xxx_messageInfo_FlushBSSRequest.DiscardUnknown(m)
}
var xxx_messageInfo_FlushBSSRequest proto.InternalMessageInfo
func (m *FlushBSSRequest) GetInterfaceName() string {
if m != nil {
return m.InterfaceName
}
return ""
}
func (m *FlushBSSRequest) GetAge() int64 {
if m != nil {
return m.Age
}
return 0
}
type ResetTestRequest struct {
ServicePath string `protobuf:"bytes,1,opt,name=service_path,json=servicePath,proto3" json:"service_path,omitempty"`
ServerIp string `protobuf:"bytes,2,opt,name=server_ip,json=serverIp,proto3" json:"server_ip,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ResetTestRequest) Reset() { *m = ResetTestRequest{} }
func (m *ResetTestRequest) String() string { return proto.CompactTextString(m) }
func (*ResetTestRequest) ProtoMessage() {}
func (*ResetTestRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{53}
}
func (m *ResetTestRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ResetTestRequest.Unmarshal(m, b)
}
func (m *ResetTestRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ResetTestRequest.Marshal(b, m, deterministic)
}
func (m *ResetTestRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ResetTestRequest.Merge(m, src)
}
func (m *ResetTestRequest) XXX_Size() int {
return xxx_messageInfo_ResetTestRequest.Size(m)
}
func (m *ResetTestRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ResetTestRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ResetTestRequest proto.InternalMessageInfo
func (m *ResetTestRequest) GetServicePath() string {
if m != nil {
return m.ServicePath
}
return ""
}
func (m *ResetTestRequest) GetServerIp() string {
if m != nil {
return m.ServerIp
}
return ""
}
type SetLoggingConfigRequest struct {
DebugLevel int32 `protobuf:"varint,1,opt,name=debug_level,json=debugLevel,proto3" json:"debug_level,omitempty"`
DebugTags []string `protobuf:"bytes,2,rep,name=debug_tags,json=debugTags,proto3" json:"debug_tags,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetLoggingConfigRequest) Reset() { *m = SetLoggingConfigRequest{} }
func (m *SetLoggingConfigRequest) String() string { return proto.CompactTextString(m) }
func (*SetLoggingConfigRequest) ProtoMessage() {}
func (*SetLoggingConfigRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{54}
}
func (m *SetLoggingConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetLoggingConfigRequest.Unmarshal(m, b)
}
func (m *SetLoggingConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetLoggingConfigRequest.Marshal(b, m, deterministic)
}
func (m *SetLoggingConfigRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetLoggingConfigRequest.Merge(m, src)
}
func (m *SetLoggingConfigRequest) XXX_Size() int {
return xxx_messageInfo_SetLoggingConfigRequest.Size(m)
}
func (m *SetLoggingConfigRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetLoggingConfigRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetLoggingConfigRequest proto.InternalMessageInfo
func (m *SetLoggingConfigRequest) GetDebugLevel() int32 {
if m != nil {
return m.DebugLevel
}
return 0
}
func (m *SetLoggingConfigRequest) GetDebugTags() []string {
if m != nil {
return m.DebugTags
}
return nil
}
type GetLoggingConfigResponse struct {
DebugLevel int32 `protobuf:"varint,1,opt,name=debug_level,json=debugLevel,proto3" json:"debug_level,omitempty"`
DebugTags []string `protobuf:"bytes,2,rep,name=debug_tags,json=debugTags,proto3" json:"debug_tags,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoggingConfigResponse) Reset() { *m = GetLoggingConfigResponse{} }
func (m *GetLoggingConfigResponse) String() string { return proto.CompactTextString(m) }
func (*GetLoggingConfigResponse) ProtoMessage() {}
func (*GetLoggingConfigResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{55}
}
func (m *GetLoggingConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoggingConfigResponse.Unmarshal(m, b)
}
func (m *GetLoggingConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoggingConfigResponse.Marshal(b, m, deterministic)
}
func (m *GetLoggingConfigResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoggingConfigResponse.Merge(m, src)
}
func (m *GetLoggingConfigResponse) XXX_Size() int {
return xxx_messageInfo_GetLoggingConfigResponse.Size(m)
}
func (m *GetLoggingConfigResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoggingConfigResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoggingConfigResponse proto.InternalMessageInfo
func (m *GetLoggingConfigResponse) GetDebugLevel() int32 {
if m != nil {
return m.DebugLevel
}
return 0
}
func (m *GetLoggingConfigResponse) GetDebugTags() []string {
if m != nil {
return m.DebugTags
}
return nil
}
type WakeOnWifiConfig struct {
Allowed bool `protobuf:"varint,1,opt,name=allowed,proto3" json:"allowed,omitempty"`
Features string `protobuf:"bytes,2,opt,name=features,proto3" json:"features,omitempty"`
NetDetectScanPeriod uint32 `protobuf:"varint,3,opt,name=net_detect_scan_period,json=netDetectScanPeriod,proto3" json:"net_detect_scan_period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakeOnWifiConfig) Reset() { *m = WakeOnWifiConfig{} }
func (m *WakeOnWifiConfig) String() string { return proto.CompactTextString(m) }
func (*WakeOnWifiConfig) ProtoMessage() {}
func (*WakeOnWifiConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{56}
}
func (m *WakeOnWifiConfig) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakeOnWifiConfig.Unmarshal(m, b)
}
func (m *WakeOnWifiConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakeOnWifiConfig.Marshal(b, m, deterministic)
}
func (m *WakeOnWifiConfig) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakeOnWifiConfig.Merge(m, src)
}
func (m *WakeOnWifiConfig) XXX_Size() int {
return xxx_messageInfo_WakeOnWifiConfig.Size(m)
}
func (m *WakeOnWifiConfig) XXX_DiscardUnknown() {
xxx_messageInfo_WakeOnWifiConfig.DiscardUnknown(m)
}
var xxx_messageInfo_WakeOnWifiConfig proto.InternalMessageInfo
func (m *WakeOnWifiConfig) GetAllowed() bool {
if m != nil {
return m.Allowed
}
return false
}
func (m *WakeOnWifiConfig) GetFeatures() string {
if m != nil {
return m.Features
}
return ""
}
func (m *WakeOnWifiConfig) GetNetDetectScanPeriod() uint32 {
if m != nil {
return m.NetDetectScanPeriod
}
return 0
}
type SetWakeOnWifiRequest struct {
Config *WakeOnWifiConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetWakeOnWifiRequest) Reset() { *m = SetWakeOnWifiRequest{} }
func (m *SetWakeOnWifiRequest) String() string { return proto.CompactTextString(m) }
func (*SetWakeOnWifiRequest) ProtoMessage() {}
func (*SetWakeOnWifiRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{57}
}
func (m *SetWakeOnWifiRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetWakeOnWifiRequest.Unmarshal(m, b)
}
func (m *SetWakeOnWifiRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetWakeOnWifiRequest.Marshal(b, m, deterministic)
}
func (m *SetWakeOnWifiRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetWakeOnWifiRequest.Merge(m, src)
}
func (m *SetWakeOnWifiRequest) XXX_Size() int {
return xxx_messageInfo_SetWakeOnWifiRequest.Size(m)
}
func (m *SetWakeOnWifiRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetWakeOnWifiRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetWakeOnWifiRequest proto.InternalMessageInfo
func (m *SetWakeOnWifiRequest) GetConfig() *WakeOnWifiConfig {
if m != nil {
return m.Config
}
return nil
}
type GetWakeOnWifiResponse struct {
Config *WakeOnWifiConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetWakeOnWifiResponse) Reset() { *m = GetWakeOnWifiResponse{} }
func (m *GetWakeOnWifiResponse) String() string { return proto.CompactTextString(m) }
func (*GetWakeOnWifiResponse) ProtoMessage() {}
func (*GetWakeOnWifiResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{58}
}
func (m *GetWakeOnWifiResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetWakeOnWifiResponse.Unmarshal(m, b)
}
func (m *GetWakeOnWifiResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetWakeOnWifiResponse.Marshal(b, m, deterministic)
}
func (m *GetWakeOnWifiResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetWakeOnWifiResponse.Merge(m, src)
}
func (m *GetWakeOnWifiResponse) XXX_Size() int {
return xxx_messageInfo_GetWakeOnWifiResponse.Size(m)
}
func (m *GetWakeOnWifiResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetWakeOnWifiResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetWakeOnWifiResponse proto.InternalMessageInfo
func (m *GetWakeOnWifiResponse) GetConfig() *WakeOnWifiConfig {
if m != nil {
return m.Config
}
return nil
}
type CheckLastWakeReasonRequest struct {
Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CheckLastWakeReasonRequest) Reset() { *m = CheckLastWakeReasonRequest{} }
func (m *CheckLastWakeReasonRequest) String() string { return proto.CompactTextString(m) }
func (*CheckLastWakeReasonRequest) ProtoMessage() {}
func (*CheckLastWakeReasonRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_96154c3d9f2960af, []int{59}
}
func (m *CheckLastWakeReasonRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CheckLastWakeReasonRequest.Unmarshal(m, b)
}
func (m *CheckLastWakeReasonRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CheckLastWakeReasonRequest.Marshal(b, m, deterministic)
}
func (m *CheckLastWakeReasonRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CheckLastWakeReasonRequest.Merge(m, src)
}
func (m *CheckLastWakeReasonRequest) XXX_Size() int {
return xxx_messageInfo_CheckLastWakeReasonRequest.Size(m)
}
func (m *CheckLastWakeReasonRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CheckLastWakeReasonRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CheckLastWakeReasonRequest proto.InternalMessageInfo
func (m *CheckLastWakeReasonRequest) GetReason() string {
if m != nil {
return m.Reason
}
return ""
}
func init() {
proto.RegisterEnum("tast.cros.wifi.ExpectShillPropertyRequest_CheckMethod", ExpectShillPropertyRequest_CheckMethod_name, ExpectShillPropertyRequest_CheckMethod_value)
proto.RegisterType((*ConnectRequest)(nil), "tast.cros.wifi.ConnectRequest")
proto.RegisterMapType((map[string]*ShillVal)(nil), "tast.cros.wifi.ConnectRequest.ShillpropsEntry")
proto.RegisterType((*ShillVal)(nil), "tast.cros.wifi.ShillVal")
proto.RegisterType((*StrArray)(nil), "tast.cros.wifi.StrArray")
proto.RegisterType((*Uint32Array)(nil), "tast.cros.wifi.Uint32Array")
proto.RegisterType((*ConnectResponse)(nil), "tast.cros.wifi.ConnectResponse")
proto.RegisterType((*DiscoverBSSIDRequest)(nil), "tast.cros.wifi.DiscoverBSSIDRequest")
proto.RegisterType((*DiscoverBSSIDResponse)(nil), "tast.cros.wifi.DiscoverBSSIDResponse")
proto.RegisterType((*DisconnectRequest)(nil), "tast.cros.wifi.DisconnectRequest")
proto.RegisterType((*DeleteEntriesForSSIDRequest)(nil), "tast.cros.wifi.DeleteEntriesForSSIDRequest")
proto.RegisterType((*QueryServiceRequest)(nil), "tast.cros.wifi.QueryServiceRequest")
proto.RegisterType((*QueryServiceResponse)(nil), "tast.cros.wifi.QueryServiceResponse")
proto.RegisterType((*QueryServiceResponse_Wifi)(nil), "tast.cros.wifi.QueryServiceResponse.Wifi")
proto.RegisterType((*GetInterfaceResponse)(nil), "tast.cros.wifi.GetInterfaceResponse")
proto.RegisterType((*GetIPv4AddrsRequest)(nil), "tast.cros.wifi.GetIPv4AddrsRequest")
proto.RegisterType((*GetIPv4AddrsResponse)(nil), "tast.cros.wifi.GetIPv4AddrsResponse")
proto.RegisterType((*GetHardwareAddrRequest)(nil), "tast.cros.wifi.GetHardwareAddrRequest")
proto.RegisterType((*GetHardwareAddrResponse)(nil), "tast.cros.wifi.GetHardwareAddrResponse")
proto.RegisterType((*ExpectWifiFrequenciesRequest)(nil), "tast.cros.wifi.ExpectWifiFrequenciesRequest")
proto.RegisterType((*BgscanConfig)(nil), "tast.cros.wifi.BgscanConfig")
proto.RegisterType((*GetBgscanConfigResponse)(nil), "tast.cros.wifi.GetBgscanConfigResponse")
proto.RegisterType((*SetBgscanConfigRequest)(nil), "tast.cros.wifi.SetBgscanConfigRequest")
proto.RegisterType((*AssureDisconnectRequest)(nil), "tast.cros.wifi.AssureDisconnectRequest")
proto.RegisterType((*DisableEnableTestRequest)(nil), "tast.cros.wifi.DisableEnableTestRequest")
proto.RegisterType((*RequestScansRequest)(nil), "tast.cros.wifi.RequestScansRequest")
proto.RegisterType((*SetMACRandomizeRequest)(nil), "tast.cros.wifi.SetMACRandomizeRequest")
proto.RegisterType((*SetMACRandomizeResponse)(nil), "tast.cros.wifi.SetMACRandomizeResponse")
proto.RegisterType((*ConfigureAndAssertAutoConnectRequest)(nil), "tast.cros.wifi.ConfigureAndAssertAutoConnectRequest")
proto.RegisterMapType((map[string]*ShillVal)(nil), "tast.cros.wifi.ConfigureAndAssertAutoConnectRequest.PropsEntry")
proto.RegisterType((*ConfigureAndAssertAutoConnectResponse)(nil), "tast.cros.wifi.ConfigureAndAssertAutoConnectResponse")
proto.RegisterType((*GetCurrentTimeResponse)(nil), "tast.cros.wifi.GetCurrentTimeResponse")
proto.RegisterType((*SelectedServiceResponse)(nil), "tast.cros.wifi.SelectedServiceResponse")
proto.RegisterType((*ExpectShillPropertyRequest)(nil), "tast.cros.wifi.ExpectShillPropertyRequest")
proto.RegisterType((*ExpectShillPropertyRequest_Criterion)(nil), "tast.cros.wifi.ExpectShillPropertyRequest.Criterion")
proto.RegisterType((*ShillPropertyChangedSignal)(nil), "tast.cros.wifi.ShillPropertyChangedSignal")
proto.RegisterType((*ExpectShillPropertyResponse)(nil), "tast.cros.wifi.ExpectShillPropertyResponse")
proto.RegisterType((*ProfileBasicTestRequest)(nil), "tast.cros.wifi.ProfileBasicTestRequest")
proto.RegisterType((*ProfileBasicTestRequest_Config)(nil), "tast.cros.wifi.ProfileBasicTestRequest.Config")
proto.RegisterMapType((map[string]*ShillVal)(nil), "tast.cros.wifi.ProfileBasicTestRequest.Config.ShillPropsEntry")
proto.RegisterType((*RequestRoamRequest)(nil), "tast.cros.wifi.RequestRoamRequest")
proto.RegisterType((*DHCPProperties)(nil), "tast.cros.wifi.DHCPProperties")
proto.RegisterType((*SetDHCPPropertiesRequest)(nil), "tast.cros.wifi.SetDHCPPropertiesRequest")
proto.RegisterType((*SetDHCPPropertiesResponse)(nil), "tast.cros.wifi.SetDHCPPropertiesResponse")
proto.RegisterType((*ReassociateRequest)(nil), "tast.cros.wifi.ReassociateRequest")
proto.RegisterType((*GetWifiEnabledResponse)(nil), "tast.cros.wifi.GetWifiEnabledResponse")
proto.RegisterType((*SetWifiEnabledRequest)(nil), "tast.cros.wifi.SetWifiEnabledRequest")
proto.RegisterType((*WaitForBSSIDRequest)(nil), "tast.cros.wifi.WaitForBSSIDRequest")
proto.RegisterType((*MACRandomizeSupportResponse)(nil), "tast.cros.wifi.MACRandomizeSupportResponse")
proto.RegisterType((*GetMACRandomizeResponse)(nil), "tast.cros.wifi.GetMACRandomizeResponse")
proto.RegisterType((*EAPAuthSkippedResponse)(nil), "tast.cros.wifi.EAPAuthSkippedResponse")
proto.RegisterType((*DisconnectReasonResponse)(nil), "tast.cros.wifi.DisconnectReasonResponse")
proto.RegisterType((*SuspendAssertConnectRequest)(nil), "tast.cros.wifi.SuspendAssertConnectRequest")
proto.RegisterType((*SuspendAssertConnectResponse)(nil), "tast.cros.wifi.SuspendAssertConnectResponse")
proto.RegisterType((*SuspendRequest)(nil), "tast.cros.wifi.SuspendRequest")
proto.RegisterType((*SuspendResponse)(nil), "tast.cros.wifi.SuspendResponse")
proto.RegisterType((*GetGlobalFTPropertyResponse)(nil), "tast.cros.wifi.GetGlobalFTPropertyResponse")
proto.RegisterType((*SetGlobalFTPropertyRequest)(nil), "tast.cros.wifi.SetGlobalFTPropertyRequest")
proto.RegisterType((*InitDUTRequest)(nil), "tast.cros.wifi.InitDUTRequest")
proto.RegisterType((*FlushBSSRequest)(nil), "tast.cros.wifi.FlushBSSRequest")
proto.RegisterType((*ResetTestRequest)(nil), "tast.cros.wifi.ResetTestRequest")
proto.RegisterType((*SetLoggingConfigRequest)(nil), "tast.cros.wifi.SetLoggingConfigRequest")
proto.RegisterType((*GetLoggingConfigResponse)(nil), "tast.cros.wifi.GetLoggingConfigResponse")
proto.RegisterType((*WakeOnWifiConfig)(nil), "tast.cros.wifi.WakeOnWifiConfig")
proto.RegisterType((*SetWakeOnWifiRequest)(nil), "tast.cros.wifi.SetWakeOnWifiRequest")
proto.RegisterType((*GetWakeOnWifiResponse)(nil), "tast.cros.wifi.GetWakeOnWifiResponse")
proto.RegisterType((*CheckLastWakeReasonRequest)(nil), "tast.cros.wifi.CheckLastWakeReasonRequest")
}
func init() { proto.RegisterFile("shill_service.proto", fileDescriptor_96154c3d9f2960af) }
var fileDescriptor_96154c3d9f2960af = []byte{
// 2897 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x19, 0x5d, 0x57, 0x1b, 0xc7,
0x55, 0x42, 0x80, 0xd0, 0x15, 0x12, 0x64, 0xc0, 0x58, 0x11, 0x4e, 0x8c, 0x37, 0x76, 0x8a, 0x9d,
0x54, 0xc4, 0x98, 0x26, 0x39, 0x89, 0x9b, 0x18, 0x0b, 0x0c, 0x24, 0x18, 0xf0, 0x0a, 0xe2, 0x26,
0x4d, 0xb2, 0x67, 0xd1, 0x0e, 0xd2, 0x86, 0x65, 0x67, 0xbb, 0x33, 0x02, 0xab, 0xe7, 0xf4, 0xa1,
0xfd, 0x01, 0xfd, 0x11, 0xfd, 0x0f, 0x39, 0xa7, 0x8f, 0x79, 0xef, 0x4b, 0xf3, 0x8f, 0x7a, 0x66,
0x76, 0x76, 0xb5, 0xdf, 0x7c, 0x34, 0x2f, 0x3a, 0x3b, 0x77, 0xee, 0xbd, 0x73, 0xe7, 0xde, 0x3b,
0xf7, 0x4b, 0x30, 0x47, 0xfb, 0xa6, 0x65, 0x69, 0x14, 0xbb, 0xe7, 0x66, 0x17, 0xb7, 0x1c, 0x97,
0x30, 0x82, 0xea, 0x4c, 0xa7, 0xac, 0xd5, 0x75, 0x09, 0x6d, 0x5d, 0x98, 0x27, 0x66, 0x73, 0xb1,
0x47, 0x48, 0xcf, 0xc2, 0x2b, 0x62, 0xf7, 0x78, 0x70, 0xb2, 0x82, 0xcf, 0x1c, 0x36, 0xf4, 0x90,
0x95, 0xbf, 0x8f, 0x41, 0xbd, 0x4d, 0x6c, 0x1b, 0x77, 0x99, 0x8a, 0xff, 0x32, 0xc0, 0x94, 0x21,
0x04, 0xe3, 0x94, 0x9a, 0x46, 0xa3, 0xb8, 0x54, 0x5c, 0x9e, 0x56, 0xc5, 0x37, 0x5a, 0x80, 0xc9,
0xbe, 0x69, 0x18, 0xd8, 0x6e, 0x8c, 0x2d, 0x15, 0x97, 0xa7, 0x54, 0xb9, 0x42, 0x4d, 0x98, 0xa2,
0xb8, 0x3b, 0x70, 0x4d, 0x36, 0x6c, 0x94, 0x96, 0x8a, 0xcb, 0x15, 0x35, 0x58, 0xa3, 0x3d, 0x00,
0x21, 0x9e, 0xe3, 0x12, 0x87, 0x36, 0xc6, 0x97, 0x4a, 0xcb, 0xd5, 0xd5, 0x56, 0x2b, 0x2a, 0x5c,
0x2b, 0x7a, 0x76, 0xab, 0x13, 0x10, 0x6c, 0xda, 0xcc, 0x1d, 0xaa, 0x21, 0x0e, 0xcd, 0xd7, 0x30,
0x13, 0xdb, 0x46, 0xb3, 0x50, 0x3a, 0xc5, 0x43, 0x21, 0x69, 0x45, 0xe5, 0x9f, 0xa8, 0x05, 0x13,
0xe7, 0xba, 0x35, 0xc0, 0x42, 0xce, 0xea, 0x6a, 0x23, 0x7e, 0x9e, 0xe0, 0xf0, 0x8d, 0x6e, 0xa9,
0x1e, 0xda, 0x67, 0x63, 0x9f, 0x16, 0x95, 0xff, 0x16, 0x61, 0xca, 0x87, 0x23, 0x04, 0x25, 0xca,
0x5c, 0x8f, 0xe5, 0x76, 0x41, 0xe5, 0x0b, 0x34, 0x0f, 0xe3, 0xc7, 0x84, 0x58, 0xde, 0xdd, 0xb7,
0x0b, 0xaa, 0x58, 0xa1, 0x06, 0x4c, 0x0e, 0x4c, 0x9b, 0x3d, 0x59, 0x15, 0x37, 0xaf, 0x6d, 0x17,
0x54, 0xb9, 0x46, 0x9f, 0x40, 0x85, 0x32, 0x57, 0xd3, 0x5d, 0x57, 0x1f, 0x36, 0xc6, 0x33, 0x04,
0x61, 0xee, 0x3a, 0xdf, 0xdf, 0x2e, 0xa8, 0x53, 0x54, 0x7e, 0xa3, 0x67, 0x30, 0xed, 0xb1, 0x90,
0xb4, 0x13, 0x82, 0x76, 0x31, 0x4e, 0x7b, 0x24, 0x70, 0x7c, 0xf2, 0xea, 0x60, 0xb4, 0x7c, 0x3e,
0x01, 0xa5, 0x73, 0xdd, 0x52, 0xde, 0x85, 0x29, 0xff, 0x00, 0x6e, 0xcf, 0x73, 0xdd, 0xa2, 0x8d,
0xe2, 0x52, 0x69, 0xb9, 0xa2, 0x8a, 0x6f, 0xe5, 0x1e, 0x54, 0x43, 0x4c, 0x22, 0x28, 0x35, 0x89,
0xf2, 0x73, 0x11, 0x66, 0x02, 0xeb, 0x50, 0x87, 0xd8, 0x14, 0xa3, 0x7b, 0x30, 0x2d, 0x7d, 0x4d,
0x73, 0x74, 0xd6, 0x97, 0x8a, 0xaf, 0x4a, 0xd8, 0x81, 0xce, 0xfa, 0xe8, 0x01, 0xd4, 0x0d, 0x93,
0x76, 0xc9, 0x39, 0x76, 0x87, 0x1a, 0x33, 0xcf, 0x3c, 0x4b, 0x94, 0xd4, 0x5a, 0x00, 0x3d, 0x34,
0xcf, 0x30, 0x7a, 0x08, 0xb3, 0x3a, 0xa5, 0xa4, 0x6b, 0xea, 0xcc, 0x24, 0xb6, 0x87, 0x58, 0x12,
0x88, 0x33, 0x21, 0xb8, 0x40, 0xfd, 0x3d, 0xa0, 0x2e, 0xb1, 0x4f, 0xcc, 0xde, 0xc0, 0x0d, 0x21,
0x8f, 0x0b, 0xe4, 0xb7, 0x22, 0x3b, 0x1c, 0x5d, 0xf9, 0x11, 0xe6, 0x37, 0xe4, 0x51, 0xcf, 0x3b,
0x9d, 0x9d, 0x0d, 0xdf, 0xad, 0xe7, 0x61, 0xe2, 0x38, 0xf0, 0xeb, 0x8a, 0xea, 0x2d, 0xd0, 0x1d,
0xa8, 0x98, 0x36, 0xc3, 0xee, 0x89, 0xde, 0xf5, 0x24, 0xad, 0xa8, 0x23, 0x40, 0xf0, 0x14, 0x4a,
0xa3, 0xa7, 0xa0, 0x7c, 0x01, 0xb7, 0x62, 0xfc, 0xa5, 0x72, 0x92, 0x37, 0x2f, 0xa6, 0xdc, 0x5c,
0xf9, 0x01, 0xde, 0x12, 0xf4, 0x91, 0x37, 0x77, 0x35, 0xc5, 0xba, 0xf8, 0x8c, 0x9c, 0x63, 0xcd,
0x71, 0xc9, 0x89, 0x69, 0x61, 0xf9, 0x14, 0x6b, 0x1e, 0xf4, 0xc0, 0x03, 0x2a, 0x8f, 0x61, 0x71,
0x03, 0x5b, 0x98, 0x61, 0xfe, 0x42, 0x4c, 0x4c, 0x5f, 0x10, 0x37, 0xac, 0x85, 0x94, 0xc7, 0xad,
0x3c, 0x84, 0xb9, 0x57, 0x03, 0xec, 0x0e, 0x3b, 0xde, 0x69, 0x21, 0xd4, 0x90, 0x2c, 0xe2, 0x5b,
0xf9, 0x4f, 0x09, 0xe6, 0xa3, 0xb8, 0xf2, 0xf2, 0x08, 0xc6, 0x6d, 0x5d, 0x5e, 0xb9, 0xa2, 0x8a,
0x6f, 0x1e, 0x34, 0x0c, 0xcc, 0xb1, 0xa4, 0x62, 0xe5, 0x8a, 0xe3, 0xb2, 0xa1, 0x83, 0x65, 0xc0,
0x10, 0xdf, 0x1c, 0x76, 0x46, 0x0c, 0xcf, 0xac, 0x15, 0x55, 0x7c, 0x73, 0x8b, 0x51, 0xa6, 0x33,
0x2c, 0x9e, 0x41, 0x45, 0xf5, 0x16, 0xa8, 0x01, 0xe5, 0x73, 0x93, 0x9a, 0xc7, 0x16, 0x6e, 0x4c,
0x0a, 0x05, 0xf8, 0x4b, 0xae, 0x44, 0x93, 0x6a, 0x52, 0xb3, 0xd8, 0x68, 0x94, 0xc5, 0x76, 0xd5,
0xa4, 0x6d, 0x1f, 0x84, 0xfe, 0x08, 0xe3, 0xfc, 0x05, 0x35, 0xa6, 0xc4, 0xc3, 0x7a, 0x18, 0x7f,
0x58, 0x69, 0x57, 0x6b, 0xbd, 0x36, 0x4f, 0x4c, 0x55, 0x90, 0x71, 0x29, 0x7b, 0x03, 0xd3, 0x68,
0x54, 0x3c, 0x29, 0xf9, 0x77, 0xf3, 0xdf, 0x45, 0x18, 0xe7, 0x28, 0xd9, 0x0e, 0x76, 0xe2, 0x72,
0x8d, 0xda, 0xdd, 0xa1, 0xd0, 0x43, 0x4d, 0x1d, 0x01, 0xb8, 0x51, 0x83, 0x85, 0x66, 0x99, 0x94,
0x35, 0x4a, 0xe2, 0x09, 0xd6, 0x02, 0xe8, 0xae, 0x49, 0x19, 0x7a, 0x1b, 0xa6, 0xfa, 0xf8, 0x8d,
0x26, 0xb8, 0x7b, 0x1a, 0x2a, 0xf7, 0xf1, 0x9b, 0x0e, 0xe7, 0x7f, 0x17, 0xaa, 0x5e, 0x2c, 0xf6,
0x76, 0x27, 0xc4, 0x9d, 0xc1, 0x03, 0x09, 0x84, 0xb7, 0x61, 0xca, 0xe9, 0x0f, 0x35, 0xa1, 0xdd,
0x49, 0x71, 0x7e, 0xd9, 0xe9, 0x0f, 0x5f, 0x12, 0x03, 0x2b, 0x8f, 0x60, 0x7e, 0x0b, 0xb3, 0x1d,
0xdf, 0xdd, 0xf3, 0x8c, 0xa9, 0x3c, 0x85, 0x39, 0x8e, 0x7b, 0x70, 0xbe, 0xb6, 0x6e, 0x18, 0x2e,
0xf5, 0x9d, 0xe4, 0x01, 0xd4, 0x83, 0xe7, 0xa2, 0x85, 0x88, 0x6a, 0x01, 0x74, 0x8f, 0x53, 0xcb,
0x93, 0x46, 0xd4, 0xa3, 0x93, 0x4c, 0xe7, 0x7c, 0xcd, 0x8f, 0x4d, 0xfc, 0x5b, 0xf9, 0x02, 0x16,
0xb6, 0x30, 0xdb, 0xd6, 0x5d, 0xe3, 0x42, 0x77, 0x31, 0xc7, 0xf7, 0x0f, 0xbb, 0x0f, 0x51, 0xb6,
0xe9, 0x67, 0xad, 0xc2, 0xed, 0x04, 0xbd, 0x3c, 0xee, 0x36, 0x94, 0xfb, 0x17, 0x9a, 0x6e, 0x18,
0x32, 0xc0, 0xab, 0x93, 0xfd, 0x0b, 0x8e, 0xa0, 0x1c, 0xc2, 0x9d, 0xcd, 0x37, 0x0e, 0xee, 0x32,
0x6e, 0xc9, 0x17, 0x52, 0xf7, 0x26, 0xa6, 0x79, 0x39, 0x71, 0x09, 0xaa, 0x27, 0x23, 0xcc, 0xc6,
0x98, 0x30, 0x5c, 0x18, 0xa4, 0xb8, 0x30, 0xfd, 0xbc, 0x47, 0xbb, 0xba, 0xdd, 0x16, 0x51, 0x8a,
0x3f, 0x88, 0x33, 0xcc, 0xfa, 0xc4, 0x77, 0x11, 0xb9, 0xe2, 0x4a, 0xa4, 0x7d, 0xe2, 0x32, 0x4d,
0x5c, 0xe4, 0x5c, 0xb7, 0xa4, 0xa3, 0xd4, 0x04, 0x74, 0x47, 0x02, 0xd1, 0x7b, 0x50, 0xb3, 0x88,
0xdd, 0x1b, 0x61, 0x89, 0xbc, 0xa3, 0x4e, 0x73, 0xa0, 0x8f, 0xa4, 0xec, 0x8b, 0xdb, 0x87, 0x8f,
0x0d, 0x6e, 0xbf, 0x06, 0x93, 0x5e, 0xb8, 0x14, 0xc7, 0x57, 0x57, 0xef, 0xc4, 0xdd, 0x3f, 0x42,
0x25, 0x71, 0x95, 0x3d, 0x58, 0xe8, 0xc4, 0x19, 0x7a, 0x4a, 0xb9, 0x19, 0xbf, 0x6f, 0xe0, 0xf6,
0x3a, 0xa5, 0x03, 0x17, 0xdf, 0x28, 0x0a, 0x36, 0xa0, 0xcc, 0x43, 0x2b, 0x19, 0x30, 0x99, 0x57,
0xfc, 0xa5, 0x62, 0x40, 0x63, 0xc3, 0xa4, 0xfa, 0xb1, 0x85, 0x37, 0x6d, 0xfe, 0x7b, 0x88, 0x29,
0xbb, 0x9e, 0x97, 0x26, 0xce, 0x1f, 0x4b, 0x9c, 0xaf, 0x7c, 0x00, 0x73, 0x92, 0x69, 0xa7, 0xab,
0xdb, 0x34, 0x94, 0x5c, 0xba, 0x64, 0x60, 0x33, 0xc1, 0x77, 0x42, 0xf5, 0x16, 0xca, 0x47, 0x42,
0x75, 0x2f, 0xd7, 0xdb, 0xaa, 0x6e, 0x1b, 0xe4, 0xcc, 0xfc, 0x6b, 0x10, 0x5b, 0x17, 0x60, 0x12,
0x0b, 0x29, 0x05, 0xc1, 0x94, 0x2a, 0x57, 0xca, 0x67, 0x70, 0x3b, 0x41, 0x21, 0xad, 0x77, 0x17,
0xaa, 0xc4, 0x32, 0x34, 0x8a, 0x19, 0x33, 0xed, 0x9e, 0xa4, 0x03, 0x62, 0x19, 0x1d, 0x0f, 0xa2,
0xfc, 0x5a, 0x84, 0xfb, 0x6d, 0x99, 0x0e, 0xf1, 0xba, 0x6d, 0xac, 0x53, 0x8a, 0x5d, 0xb6, 0x3e,
0x60, 0x24, 0x56, 0xe0, 0x1d, 0xc1, 0x84, 0x57, 0x93, 0x15, 0x45, 0x4d, 0xf6, 0x65, 0x4a, 0x4d,
0x76, 0x29, 0x93, 0xd6, 0xc1, 0xa8, 0x48, 0xf3, 0xb8, 0x35, 0x55, 0x80, 0x83, 0xdf, 0xba, 0x34,
0xfb, 0x1c, 0x1e, 0x5c, 0x22, 0xcd, 0x28, 0x90, 0x24, 0x92, 0xd5, 0x8f, 0x22, 0x90, 0xb4, 0x07,
0xae, 0x8b, 0x6d, 0xc6, 0x73, 0x6f, 0x80, 0xfd, 0x0e, 0x80, 0x4d, 0x2e, 0x34, 0x8a, 0xbb, 0xc4,
0x36, 0x64, 0x9a, 0xae, 0xd8, 0xe4, 0xa2, 0x23, 0x00, 0xdc, 0x5d, 0xf8, 0xb6, 0xad, 0xdb, 0x44,
0xa2, 0xc8, 0x1a, 0xc6, 0x26, 0x17, 0x7b, 0x01, 0x50, 0x79, 0xca, 0x8d, 0x65, 0x89, 0xc4, 0x12,
0x4f, 0x87, 0x97, 0x7b, 0xb2, 0xf2, 0x4b, 0x09, 0x9a, 0x5e, 0xcc, 0x11, 0x17, 0xe7, 0xaa, 0xc3,
0x2e, 0x1b, 0xfa, 0x46, 0xe2, 0xe6, 0x3e, 0xfe, 0x09, 0x77, 0x59, 0x98, 0x01, 0x78, 0x20, 0xf1,
0x12, 0xbe, 0xf2, 0xad, 0x38, 0x26, 0xac, 0xb8, 0x16, 0x57, 0x67, 0x36, 0xef, 0x56, 0xdb, 0x35,
0x19, 0x76, 0x4d, 0x62, 0x4b, 0xd3, 0xf1, 0xc8, 0x72, 0x46, 0x6c, 0x93, 0x11, 0x57, 0xf3, 0x78,
0x96, 0x44, 0x3c, 0x9e, 0x96, 0x40, 0x61, 0xd6, 0xe6, 0xaf, 0x45, 0xa8, 0x04, 0x94, 0x29, 0xf6,
0x5d, 0x81, 0x49, 0xdd, 0x1e, 0x6a, 0xe4, 0x44, 0x4a, 0x94, 0x63, 0x60, 0xdd, 0x1e, 0xee, 0x9f,
0xa0, 0xc7, 0x50, 0xb6, 0x89, 0x8d, 0x39, 0x45, 0xe9, 0x12, 0x8a, 0x49, 0x8e, 0xb8, 0x7f, 0x82,
0xf6, 0x82, 0x08, 0xca, 0xd3, 0x60, 0x7d, 0xf5, 0xe3, 0xeb, 0xdc, 0xba, 0x8f, 0xbb, 0xa7, 0x2f,
0x05, 0xb5, 0x1f, 0x79, 0x95, 0xa7, 0x50, 0x0d, 0x81, 0x51, 0x1d, 0xa0, 0xbd, 0xbd, 0xd9, 0xfe,
0x5a, 0x7b, 0xbd, 0xbe, 0x73, 0x38, 0x5b, 0x40, 0x35, 0xa8, 0xec, 0xef, 0x69, 0xed, 0xed, 0xf5,
0xbd, 0xad, 0xcd, 0xd9, 0xe2, 0x68, 0x7b, 0x7f, 0x6f, 0xf7, 0xdb, 0xd9, 0x31, 0xe5, 0x7b, 0x68,
0x46, 0x4e, 0x6a, 0xf7, 0x75, 0xbb, 0x87, 0x8d, 0x8e, 0xd9, 0xb3, 0x45, 0x27, 0x31, 0xce, 0x95,
0x19, 0xb8, 0xa4, 0x4b, 0x1c, 0xf4, 0x48, 0x94, 0xe7, 0x97, 0xbe, 0x00, 0x51, 0xc3, 0xff, 0x52,
0x84, 0xc5, 0xd4, 0xeb, 0x48, 0x1f, 0x4b, 0x5a, 0xe0, 0x1a, 0xdc, 0xd1, 0x33, 0xdf, 0x7d, 0x3c,
0xd5, 0x3f, 0x4a, 0xc5, 0x4e, 0xbd, 0x98, 0xef, 0x34, 0xf7, 0xc0, 0xf7, 0x0f, 0xcd, 0x20, 0xb6,
0x57, 0xba, 0x4d, 0xa9, 0x55, 0x09, 0xdb, 0x20, 0x36, 0x56, 0xfe, 0x55, 0x82, 0xdb, 0xb2, 0x30,
0x7d, 0xae, 0x53, 0xb3, 0x1b, 0x8e, 0xc9, 0xcf, 0xa0, 0xa4, 0x3b, 0x1f, 0xc9, 0xd4, 0x91, 0xe8,
0x0b, 0x33, 0xa8, 0x64, 0x6c, 0x52, 0x39, 0xa9, 0xc7, 0xe1, 0xb1, 0xbc, 0xee, 0x0d, 0x38, 0x3c,
0x6e, 0xfe, 0x63, 0x0c, 0x26, 0x65, 0x6e, 0x4e, 0xcb, 0xf0, 0xe1, 0xee, 0x76, 0x2c, 0xd6, 0xdd,
0xd6, 0x61, 0xcc, 0x74, 0x64, 0x09, 0x3b, 0x66, 0x3a, 0x48, 0x83, 0xaa, 0xd7, 0x8c, 0x87, 0xdb,
0xdd, 0x2f, 0xae, 0x27, 0xd4, 0x48, 0xe9, 0x91, 0xf6, 0xf7, 0x20, 0xd2, 0xfe, 0xfe, 0xe6, 0x31,
0xf6, 0x14, 0x90, 0x14, 0x43, 0x25, 0xfa, 0xd9, 0x35, 0x53, 0x66, 0x50, 0xf4, 0x8e, 0x85, 0x8b,
0xde, 0x50, 0x96, 0x2e, 0x45, 0xb3, 0xf4, 0x3e, 0xd4, 0x37, 0xb6, 0xdb, 0x07, 0xd2, 0xb1, 0x4c,
0x2c, 0xdc, 0xe8, 0x1c, 0xdb, 0x06, 0x71, 0xb5, 0xae, 0xa5, 0x53, 0xea, 0x87, 0x4a, 0x0f, 0xd6,
0xe6, 0x20, 0x6e, 0x87, 0x3e, 0xa1, 0x4c, 0x48, 0x21, 0xed, 0xe0, 0xaf, 0x95, 0x03, 0x68, 0x74,
0x30, 0x8b, 0xf2, 0x1c, 0x15, 0x28, 0x41, 0xa2, 0xe3, 0xda, 0x78, 0x37, 0xae, 0x8d, 0x18, 0x95,
0x87, 0xac, 0xbc, 0x82, 0xb7, 0x53, 0x38, 0x06, 0x35, 0xd4, 0x4d, 0x58, 0x1e, 0x71, 0x15, 0xfb,
0x7d, 0x2d, 0xbe, 0xa6, 0x8a, 0xb3, 0x4b, 0x9e, 0x55, 0x91, 0xe0, 0x78, 0xc9, 0xea, 0x95, 0x3c,
0x46, 0x20, 0x66, 0x03, 0xca, 0x5e, 0x45, 0x61, 0xc8, 0x42, 0xc1, 0x5f, 0x2a, 0x8f, 0xe1, 0x56,
0x27, 0x46, 0xe3, 0x49, 0x93, 0x4d, 0xf2, 0x25, 0xcc, 0xbd, 0xd6, 0x4d, 0xf6, 0x82, 0x44, 0x1b,
0xea, 0xb4, 0x17, 0x93, 0xea, 0x0e, 0xca, 0xe7, 0xb0, 0x18, 0x2e, 0x69, 0x3a, 0x03, 0xc7, 0x21,
0xee, 0x28, 0x77, 0xdf, 0x81, 0x0a, 0xf5, 0x40, 0xc1, 0xd9, 0x23, 0x80, 0xf2, 0x44, 0x14, 0xb4,
0xa9, 0x25, 0x51, 0xb6, 0xc8, 0xab, 0xb0, 0xb0, 0xb9, 0x7e, 0xb0, 0x3e, 0x60, 0xfd, 0xce, 0xa9,
0xe9, 0x38, 0x51, 0xcd, 0x50, 0x0f, 0xe4, 0xd3, 0xc8, 0xa5, 0xb2, 0x2a, 0x0a, 0xc8, 0xa0, 0x24,
0xd5, 0x29, 0xb1, 0x03, 0xaa, 0x05, 0x98, 0x74, 0x05, 0x44, 0x16, 0x78, 0x72, 0xa5, 0xf4, 0x61,
0xb1, 0x33, 0xa0, 0x0e, 0xf6, 0x4b, 0x93, 0x58, 0xa5, 0xf5, 0x3e, 0xcc, 0x5c, 0xe8, 0xa7, 0x58,
0x1b, 0x38, 0x9a, 0x6f, 0x42, 0x39, 0x13, 0xe0, 0xe0, 0x23, 0xe7, 0xd0, 0x03, 0x5e, 0xa5, 0xf0,
0xdc, 0x84, 0x3b, 0xe9, 0x27, 0x8d, 0xa6, 0x0f, 0x2e, 0x96, 0xc2, 0x47, 0xa6, 0x0f, 0x01, 0x54,
0x4c, 0x1f, 0x8e, 0xa1, 0x2e, 0xd9, 0x5c, 0x57, 0xc6, 0x65, 0x98, 0xed, 0xf2, 0x54, 0xa9, 0x61,
0xdd, 0xb5, 0x86, 0x1a, 0xdf, 0x94, 0x13, 0x88, 0xba, 0x80, 0x6f, 0x72, 0xf0, 0x6b, 0xfd, 0x14,
0x2b, 0x6b, 0x30, 0x13, 0x9c, 0x11, 0xaa, 0x87, 0x3c, 0x50, 0x58, 0xb6, 0xaa, 0x84, 0x09, 0xc9,
0x3e, 0x81, 0xc5, 0x2d, 0xcc, 0xb6, 0x2c, 0x72, 0xac, 0x5b, 0x2f, 0x0e, 0x13, 0xd9, 0x2e, 0xdb,
0xd6, 0x1f, 0x43, 0xb3, 0x93, 0x46, 0x78, 0x99, 0x5b, 0x3f, 0x84, 0xfa, 0x8e, 0x6d, 0xb2, 0x8d,
0xa3, 0x43, 0x1f, 0xf7, 0x36, 0x94, 0x2f, 0x4c, 0xd6, 0xd7, 0x06, 0xa6, 0x5f, 0x96, 0xf3, 0xe5,
0x91, 0xa9, 0x7c, 0x05, 0x33, 0x2f, 0xac, 0x01, 0xed, 0x3f, 0xef, 0x74, 0xae, 0xf9, 0x78, 0x67,
0xa1, 0xa4, 0xf7, 0xfc, 0x19, 0x18, 0xff, 0x54, 0x54, 0x98, 0x55, 0x31, 0xc5, 0x2c, 0x9c, 0x0b,
0xaf, 0xd0, 0xf8, 0x2c, 0x42, 0x85, 0x2f, 0xb1, 0xab, 0x99, 0xce, 0x28, 0x19, 0x71, 0xc0, 0x8e,
0xa3, 0x7c, 0x2b, 0xda, 0x86, 0x5d, 0xd2, 0xeb, 0x99, 0x76, 0x2f, 0xda, 0xa4, 0xdd, 0x85, 0xaa,
0x81, 0x8f, 0x07, 0x3d, 0xcd, 0xc2, 0xe7, 0xd8, 0x92, 0xee, 0x0b, 0x02, 0xb4, 0xcb, 0x21, 0xbc,
0x16, 0xf6, 0x10, 0x98, 0xde, 0xf3, 0x8a, 0xc9, 0x8a, 0x5a, 0x11, 0x90, 0x43, 0xbd, 0x47, 0x95,
0xef, 0xa0, 0xb1, 0x95, 0x60, 0x3d, 0x6a, 0x49, 0xfe, 0x2f, 0xde, 0x7f, 0x83, 0x59, 0xee, 0x30,
0xfb, 0x36, 0x0f, 0x47, 0x32, 0x0f, 0x37, 0xa0, 0xac, 0x5b, 0x16, 0xb9, 0x18, 0xd9, 0x4b, 0x2e,
0x79, 0x16, 0x38, 0xc1, 0x3a, 0x1b, 0xb8, 0xa2, 0xd9, 0x16, 0x0a, 0xf0, 0xd7, 0xe8, 0x09, 0x2c,
0xd8, 0x98, 0x69, 0x06, 0x66, 0xdc, 0xfd, 0x79, 0xd7, 0xa9, 0x39, 0xbc, 0x4e, 0x35, 0x64, 0x8f,
0x3c, 0x67, 0x63, 0xb6, 0x21, 0x36, 0x79, 0xdb, 0x76, 0x20, 0xb6, 0x94, 0x03, 0x98, 0xe7, 0xa1,
0x30, 0x90, 0xc0, 0x57, 0xd9, 0xa7, 0xb1, 0xbe, 0x76, 0x29, 0x1e, 0xe4, 0xe3, 0x42, 0x07, 0xbd,
0xed, 0x2b, 0xb8, 0xb5, 0x15, 0xe5, 0x28, 0x35, 0x75, 0x73, 0x96, 0x6b, 0xd0, 0x14, 0x15, 0xea,
0xae, 0x4e, 0x05, 0x63, 0x3f, 0x30, 0x05, 0x7d, 0x64, 0x28, 0x2e, 0x55, 0xfc, 0xb8, 0xb4, 0xfa,
0xf3, 0x5d, 0x98, 0x16, 0xb9, 0x5e, 0x36, 0x26, 0xa8, 0x0d, 0x65, 0xe9, 0xec, 0x28, 0x91, 0xb3,
0xa2, 0xaf, 0xa0, 0xb9, 0xd0, 0xf2, 0xfe, 0x30, 0x68, 0xf9, 0x7f, 0x18, 0xb4, 0x36, 0xcf, 0x1c,
0x36, 0x54, 0x0a, 0xa8, 0x0d, 0x33, 0x2a, 0x36, 0x6d, 0x53, 0xf8, 0x6e, 0x47, 0x4c, 0xe3, 0x32,
0x90, 0x73, 0x98, 0x3c, 0x85, 0xa9, 0x43, 0xac, 0xbb, 0x1b, 0xe4, 0xc2, 0xbe, 0x01, 0xf5, 0x2e,
0x94, 0x65, 0xe4, 0x4b, 0xde, 0x23, 0x1a, 0x7c, 0x9b, 0x77, 0x33, 0xf7, 0x3d, 0xa3, 0x28, 0x05,
0xb4, 0x03, 0x30, 0x0a, 0xf9, 0xe8, 0x5e, 0x22, 0x99, 0xc7, 0x27, 0x14, 0x39, 0x82, 0xfd, 0x00,
0xf3, 0x69, 0x73, 0x57, 0xf4, 0x41, 0x82, 0x69, 0xf6, 0x74, 0x36, 0x87, 0xfd, 0x9f, 0x61, 0x3a,
0x3c, 0x9c, 0x44, 0xef, 0xe5, 0x8f, 0x2e, 0x3d, 0x76, 0xf7, 0xaf, 0x32, 0xdf, 0x54, 0x0a, 0x68,
0x0f, 0xa6, 0xc3, 0x73, 0xc0, 0x4c, 0xb3, 0x24, 0xf8, 0xa5, 0x4d, 0x0f, 0x3d, 0x61, 0xc3, 0xd3,
0xbe, 0xa4, 0xb0, 0x29, 0x93, 0xc4, 0x74, 0xe6, 0xf1, 0x81, 0xa1, 0x52, 0x40, 0x06, 0xcc, 0xc4,
0xc6, 0x7b, 0xe8, 0xfd, 0x14, 0xd2, 0x94, 0xf9, 0x61, 0xf3, 0x77, 0x97, 0xe2, 0x05, 0xa7, 0x68,
0x70, 0x2b, 0x75, 0x20, 0x88, 0x3e, 0x4c, 0xef, 0x38, 0xd3, 0xe7, 0x86, 0x39, 0x06, 0x3d, 0x14,
0xd7, 0x88, 0x8e, 0x07, 0x33, 0xd4, 0x9e, 0x26, 0x76, 0xda, 0x80, 0x4f, 0x29, 0xa0, 0x0e, 0xcc,
0xc4, 0x86, 0x75, 0x49, 0xe5, 0xa4, 0x4f, 0xf3, 0x72, 0x44, 0x3d, 0x82, 0xd9, 0xf8, 0xc4, 0x0e,
0x25, 0x64, 0xca, 0x98, 0xe9, 0xe5, 0xb0, 0x7d, 0x2d, 0xfe, 0x08, 0x89, 0x0e, 0xec, 0xd0, 0x72,
0xca, 0x1b, 0x4c, 0x9d, 0xe9, 0xe5, 0x30, 0x7e, 0x09, 0xd3, 0xe1, 0x19, 0x5d, 0xd2, 0xfd, 0x52,
0x26, 0x78, 0x39, 0xec, 0x0c, 0xa1, 0xd3, 0x70, 0x01, 0x9a, 0xaa, 0xd3, 0x94, 0x31, 0x5f, 0xd2,
0x72, 0x19, 0xc3, 0x3d, 0xa5, 0x80, 0x9e, 0xc1, 0x34, 0x2f, 0xb2, 0xb9, 0x4c, 0x3b, 0x86, 0x75,
0x93, 0xc0, 0xfa, 0xcf, 0x22, 0xbc, 0x93, 0x3b, 0x2c, 0x43, 0x6b, 0x37, 0x99, 0xf4, 0x35, 0xff,
0x70, 0x4d, 0xaa, 0xe0, 0x4a, 0x2a, 0xd4, 0xa3, 0xf3, 0xb7, 0xcc, 0x4b, 0xa5, 0x3d, 0xe0, 0x94,
0xb9, 0x9d, 0xf7, 0x6c, 0x62, 0x33, 0xb7, 0xab, 0x3f, 0x9b, 0x8c, 0x61, 0x9d, 0x52, 0x40, 0x2e,
0xcc, 0xa5, 0x4c, 0x5a, 0xd0, 0xa3, 0xab, 0x4f, 0x97, 0x9a, 0x1f, 0x5c, 0x09, 0xd7, 0x3f, 0xf1,
0xa3, 0x22, 0x7f, 0x55, 0xf1, 0x69, 0x40, 0xf2, 0x55, 0x65, 0xcc, 0x0b, 0x72, 0xbc, 0xe0, 0x47,
0xa8, 0x45, 0xfe, 0x9e, 0x44, 0xf7, 0x53, 0xb3, 0x5a, 0xec, 0xdf, 0xd1, 0xe6, 0x83, 0x4b, 0xb0,
0x02, 0x55, 0x7d, 0x0d, 0xd5, 0xd0, 0xb4, 0x00, 0x29, 0x19, 0x6f, 0x2b, 0x34, 0x4a, 0xc8, 0x11,
0xf6, 0x27, 0x78, 0x2b, 0xd1, 0x6a, 0x27, 0x43, 0x40, 0x56, 0x7f, 0xdf, 0x7c, 0x78, 0x05, 0xcc,
0xa8, 0xe0, 0x41, 0x0f, 0x9e, 0x26, 0x78, 0xbc, 0x41, 0xcf, 0x11, 0xdc, 0x73, 0xed, 0x50, 0x17,
0x7d, 0x2d, 0xd7, 0x4e, 0xe9, 0xd8, 0x95, 0x02, 0x7a, 0x05, 0xf5, 0x68, 0x67, 0x8e, 0x1e, 0xa4,
0xdc, 0x2f, 0xd9, 0xb9, 0xe7, 0x47, 0xc2, 0x70, 0xe7, 0x9e, 0x8c, 0x84, 0x29, 0x7d, 0x7d, 0x0e,
0xbb, 0xef, 0x61, 0x2e, 0xa5, 0x8f, 0xcf, 0xbc, 0x7a, 0xe2, 0x49, 0xe4, 0x0c, 0x01, 0x82, 0x8c,
0x18, 0x89, 0xb3, 0xd7, 0xc9, 0x88, 0x19, 0x71, 0xf5, 0x10, 0xea, 0xd1, 0x49, 0xc0, 0xd5, 0x2d,
0x95, 0x3e, 0x41, 0x10, 0x8f, 0x97, 0xc2, 0x7c, 0x5a, 0x37, 0x9e, 0xac, 0xf6, 0x72, 0xa6, 0x03,
0xcd, 0x0f, 0xaf, 0x86, 0x1c, 0x5c, 0x65, 0x17, 0xca, 0x12, 0x23, 0x59, 0xfb, 0x46, 0x9b, 0xfa,
0x64, 0xed, 0x1b, 0x6b, 0xc8, 0x3d, 0x63, 0xa6, 0xf4, 0xdb, 0x57, 0x37, 0x66, 0x4e, 0xb3, 0x2e,
0x4a, 0xc0, 0xb9, 0x94, 0xa6, 0x3c, 0x19, 0x51, 0xb3, 0x3b, 0xf7, 0x1c, 0x3f, 0xfc, 0x13, 0xcc,
0xc6, 0x27, 0x35, 0x99, 0x72, 0x2f, 0xe7, 0x15, 0xf5, 0xe1, 0x19, 0x8f, 0xb0, 0xeb, 0x26, 0x4c,
0xf9, 0x8d, 0x3e, 0x4a, 0xe8, 0x30, 0x36, 0x02, 0xc8, 0x11, 0x70, 0x0b, 0x2a, 0x41, 0x8f, 0x8f,
0x96, 0x92, 0x91, 0x26, 0xda, 0xfe, 0xe7, 0x30, 0xfa, 0x12, 0xaa, 0xdb, 0x58, 0xb7, 0x58, 0x5f,
0xf4, 0x80, 0x37, 0x28, 0x0a, 0xbe, 0x81, 0xd9, 0x78, 0xfb, 0x7e, 0x75, 0x55, 0x65, 0x35, 0xfe,
0x5e, 0x4d, 0x18, 0x9f, 0x38, 0xa0, 0xb4, 0x6a, 0x27, 0x6d, 0x26, 0x91, 0x23, 0xee, 0x01, 0xd4,
0x22, 0x0d, 0x74, 0xa6, 0xac, 0x0f, 0xd2, 0xc2, 0x6a, 0xa2, 0xef, 0x56, 0x0a, 0x68, 0x1f, 0x6a,
0x91, 0x26, 0x3f, 0x99, 0x0f, 0xd3, 0x66, 0x00, 0xb9, 0x9d, 0xd8, 0x5c, 0x4a, 0x43, 0x9e, 0xf4,
0xec, 0xec, 0xae, 0x3d, 0x9b, 0xf9, 0xf3, 0xfb, 0xdf, 0x29, 0xdd, 0xbe, 0x4b, 0xce, 0xcc, 0xc1,
0x19, 0xa1, 0x2b, 0x9c, 0xe3, 0x8a, 0x1c, 0x02, 0xd1, 0x15, 0xce, 0x7a, 0x85, 0xb3, 0x3e, 0x9e,
0x14, 0x74, 0x4f, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x8d, 0x5b, 0xff, 0x27, 0x00,
0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// ShillServiceClient is the client API for ShillService service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type ShillServiceClient interface {
// InitDUT initialize the DUT for WiFi testing.
InitDUT(ctx context.Context, in *InitDUTRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// ReinitTestState cleans and sets up the environment for a single WiFi testcase.
ReinitTestState(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
// TearDown reverts the settings made in InitDUT (and also ReinitTestState).
TearDown(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
// Connect attempts to connect WiFi network.
Connect(ctx context.Context, in *ConnectRequest, opts ...grpc.CallOption) (*ConnectResponse, error)
// Disconnect attempts to disconnect from a service.
Disconnect(ctx context.Context, in *DisconnectRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// DeleteEntriesForSSID deletes all WiFi profile entries for a given ssid.
DeleteEntriesForSSID(ctx context.Context, in *DeleteEntriesForSSIDRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// QueryService queries shill service information.
QueryService(ctx context.Context, in *QueryServiceRequest, opts ...grpc.CallOption) (*QueryServiceResponse, error)
// GetInterface returns the WiFi device interface name (e.g., wlan0).
GetInterface(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetInterfaceResponse, error)
// GetIPv4Addrs returns the IPv4 addresses for the network interface.
GetIPv4Addrs(ctx context.Context, in *GetIPv4AddrsRequest, opts ...grpc.CallOption) (*GetIPv4AddrsResponse, error)
// GetHardwareAddr returns the HardwareAddr for the network interface.
GetHardwareAddr(ctx context.Context, in *GetHardwareAddrRequest, opts ...grpc.CallOption) (*GetHardwareAddrResponse, error)
// ExpectWifiFrequencies checks if the device discovers the given SSID on the specific frequencies.
ExpectWifiFrequencies(ctx context.Context, in *ExpectWifiFrequenciesRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// GetBgscanConfig returns the bgscan configuration the device's WiFi module currently uses.
GetBgscanConfig(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetBgscanConfigResponse, error)
// SetBgscanConfig sets the device's WiFi module's bgscan configuration.
SetBgscanConfig(ctx context.Context, in *SetBgscanConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// AssureDisconnect assures that the WiFi service has disconnected within timeout (nanoseconds).
AssureDisconnect(ctx context.Context, in *AssureDisconnectRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// DisableEnableTest disables and then enables the WiFi interface.
// This is the main body of the DisableEnable test.
DisableEnableTest(ctx context.Context, in *DisableEnableTestRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// RequestScans requests shill to trigger active scans on WiFi devices.
RequestScans(ctx context.Context, in *RequestScansRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// SetMACRandomize sets the MAC randomization setting on the WiFi device.
// The original setting is returned for ease of restoring.
SetMACRandomize(ctx context.Context, in *SetMACRandomizeRequest, opts ...grpc.CallOption) (*SetMACRandomizeResponse, error)
// WaitScanIdle waits for not scanning state. If there's a running scan, it can
// wait for it to be done with timeout 10 seconds.
// This is useful when the test sets some parameters regarding scans and wants
// to avoid noices due to not yet ended scans.
WaitScanIdle(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
// ConfigureAndAssertAutoConnect configures the matched shill service and then
// waits for the IsConnected property becomes true.
// Note that this function does not attempt to connect; it waits for auto
// connect instead.
ConfigureAndAssertAutoConnect(ctx context.Context, in *ConfigureAndAssertAutoConnectRequest, opts ...grpc.CallOption) (*ConfigureAndAssertAutoConnectResponse, error)
// GetCurrentTime returns the current local time in the given format.
GetCurrentTime(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetCurrentTimeResponse, error)
// SelectedService returns the object path of selected service of WiFi service.
SelectedService(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*SelectedServiceResponse, error)
// ExpectShillProperty is a streaming gRPC, takes a shill service path, expects a list of property
// criteria in order, and takes a list of shill properties to monitor. When a property's value is
// expected, it responds the property's (key, value) pair. The method sends an empty response as the
// property watcher is set. A property matching criterion consists of a property name, a list of
// expected values, a list of excluded values, and a "CheckType". We say a criterion is met iff the
// property value is in one of the expected values and not in any of the excluded values. If the
// property value is one of the excluded values, the method fails immediately. The call monitors the
// specified shill properties and returns the monitor results as a chronological list of pairs
// (changed property, changed value) at the end.
// For CheckMethod, it has three methods:
// 1. CHECK_ONLY: checks if the criterion is met.
// 2. ON_CHANGE: waits for the property changes to the expected values.
// 3. CHECK_WAIT: checks if the criterion is met; if not, waits until the property's value is met.
ExpectShillProperty(ctx context.Context, in *ExpectShillPropertyRequest, opts ...grpc.CallOption) (ShillService_ExpectShillPropertyClient, error)
// ProfileBasicTest is the main body of the ProfileBasic test, which creates,
// pushes, and pops the profiles and asserts the connection states between
// those operations.
ProfileBasicTest(ctx context.Context, in *ProfileBasicTestRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// DiscoverBSSID discovers the specified BSSID by running a scan.
DiscoverBSSID(ctx context.Context, in *DiscoverBSSIDRequest, opts ...grpc.CallOption) (*DiscoverBSSIDResponse, error)
// RequestRoam requests DUT to roam to the specified BSSID and waits until
// the DUT has roamed.
RequestRoam(ctx context.Context, in *RequestRoamRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// SetDHCPProperties sets the DHCP properties in shill and returns the original
// values.
SetDHCPProperties(ctx context.Context, in *SetDHCPPropertiesRequest, opts ...grpc.CallOption) (*SetDHCPPropertiesResponse, error)
// Reassociate triggers reassociation with the current AP and waits until it
// has reconnected or the timeout (in nanoseconds) expires.
Reassociate(ctx context.Context, in *ReassociateRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// GetWifiEnabled checks to see if Wifi is an enabled technology on shill.
// This call will wait for WiFi to appear in available technologies so we
// can get correct enabled setting.
GetWifiEnabled(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetWifiEnabledResponse, error)
// SetWifiEnabled persistently enables/disables Wifi via shill.
SetWifiEnabled(ctx context.Context, in *SetWifiEnabledRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// WaitForBSSID waits for a specific BSSID to be found.
WaitForBSSID(ctx context.Context, in *WaitForBSSIDRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// MACRandomizeSupport tells if MAC randomization is supported for the WiFi device.
MACRandomizeSupport(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*MACRandomizeSupportResponse, error)
// GetMACRandomize tells if MAC randomization is enabled for the WiFi device.
GetMACRandomize(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetMACRandomizeResponse, error)
// EAPAuthSkipped is a streaming gRPC, who watches wpa_supplicant's D-Bus signals until the next connection
// completes, and tells that the EAP authentication is skipped (i.e., PMKSA is cached and used) or not.
// Note that the method sends an empty response as the signal watcher is set.
EAPAuthSkipped(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (ShillService_EAPAuthSkippedClient, error)
// SuspendAssertConnect suspends the DUT and waits for connection after resuming.
SuspendAssertConnect(ctx context.Context, in *SuspendAssertConnectRequest, opts ...grpc.CallOption) (*SuspendAssertConnectResponse, error)
// Suspend suspends the DUT.
Suspend(ctx context.Context, in *SuspendRequest, opts ...grpc.CallOption) (*SuspendResponse, error)
// GetGlobalFTProperty returns the WiFi.GlobalFTEnabled manager property value.
GetGlobalFTProperty(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetGlobalFTPropertyResponse, error)
// SetGlobalFTProperty set the WiFi.GlobalFTEnabled manager property value.
SetGlobalFTProperty(ctx context.Context, in *SetGlobalFTPropertyRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// DisconnectReason is a streaming gRPC, who waits for the wpa_supplicant's
// DisconnectReason property change, and returns the code to the client.
// To notify the caller that it is ready, it sends an empty response after
// the signal watcher is initialized.
DisconnectReason(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (ShillService_DisconnectReasonClient, error)
// FlushBSS flushes BSS entries over the specified age from wpa_supplicant's cache.
FlushBSS(ctx context.Context, in *FlushBSSRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// ResetTest is the main body of the Reset test, which resets/suspends and verifies the connection for several times.
ResetTest(ctx context.Context, in *ResetTestRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// HealthCheck examines if the DUT is healthy. If some tests fail to bring
// the WiFi device back, it treats the DUT as unhealthy. Testing host needs
// to reboot the DUT to refrain it from affecting the following tests.
HealthCheck(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
// GetLoggingConfig returns the logging configuration the device currently uses.
GetLoggingConfig(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetLoggingConfigResponse, error)
// SetLoggingConfig sets the device logging configuration.
SetLoggingConfig(ctx context.Context, in *SetLoggingConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// GetWakeOnWifi gets WakeOnWiFi related properties of WiFi device.
GetWakeOnWifi(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetWakeOnWifiResponse, error)
// SetWakeOnWifi sets WakeOnWiFi related properties of WiFi device.
SetWakeOnWifi(ctx context.Context, in *SetWakeOnWifiRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// CheckLastWakeReason checks if the last wake reason of WiFi device is as expected.
CheckLastWakeReason(ctx context.Context, in *CheckLastWakeReasonRequest, opts ...grpc.CallOption) (*empty.Empty, error)
}
type shillServiceClient struct {
cc *grpc.ClientConn
}
func NewShillServiceClient(cc *grpc.ClientConn) ShillServiceClient {
return &shillServiceClient{cc}
}
func (c *shillServiceClient) InitDUT(ctx context.Context, in *InitDUTRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/InitDUT", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) ReinitTestState(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/ReinitTestState", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) TearDown(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/TearDown", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) Connect(ctx context.Context, in *ConnectRequest, opts ...grpc.CallOption) (*ConnectResponse, error) {
out := new(ConnectResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/Connect", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) Disconnect(ctx context.Context, in *DisconnectRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/Disconnect", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) DeleteEntriesForSSID(ctx context.Context, in *DeleteEntriesForSSIDRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/DeleteEntriesForSSID", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) QueryService(ctx context.Context, in *QueryServiceRequest, opts ...grpc.CallOption) (*QueryServiceResponse, error) {
out := new(QueryServiceResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/QueryService", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetInterface(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetInterfaceResponse, error) {
out := new(GetInterfaceResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetInterface", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetIPv4Addrs(ctx context.Context, in *GetIPv4AddrsRequest, opts ...grpc.CallOption) (*GetIPv4AddrsResponse, error) {
out := new(GetIPv4AddrsResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetIPv4Addrs", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetHardwareAddr(ctx context.Context, in *GetHardwareAddrRequest, opts ...grpc.CallOption) (*GetHardwareAddrResponse, error) {
out := new(GetHardwareAddrResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetHardwareAddr", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) ExpectWifiFrequencies(ctx context.Context, in *ExpectWifiFrequenciesRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/ExpectWifiFrequencies", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetBgscanConfig(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetBgscanConfigResponse, error) {
out := new(GetBgscanConfigResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetBgscanConfig", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetBgscanConfig(ctx context.Context, in *SetBgscanConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetBgscanConfig", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) AssureDisconnect(ctx context.Context, in *AssureDisconnectRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/AssureDisconnect", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) DisableEnableTest(ctx context.Context, in *DisableEnableTestRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/DisableEnableTest", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) RequestScans(ctx context.Context, in *RequestScansRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/RequestScans", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetMACRandomize(ctx context.Context, in *SetMACRandomizeRequest, opts ...grpc.CallOption) (*SetMACRandomizeResponse, error) {
out := new(SetMACRandomizeResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetMACRandomize", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) WaitScanIdle(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/WaitScanIdle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) ConfigureAndAssertAutoConnect(ctx context.Context, in *ConfigureAndAssertAutoConnectRequest, opts ...grpc.CallOption) (*ConfigureAndAssertAutoConnectResponse, error) {
out := new(ConfigureAndAssertAutoConnectResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/ConfigureAndAssertAutoConnect", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetCurrentTime(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetCurrentTimeResponse, error) {
out := new(GetCurrentTimeResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetCurrentTime", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SelectedService(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*SelectedServiceResponse, error) {
out := new(SelectedServiceResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SelectedService", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) ExpectShillProperty(ctx context.Context, in *ExpectShillPropertyRequest, opts ...grpc.CallOption) (ShillService_ExpectShillPropertyClient, error) {
stream, err := c.cc.NewStream(ctx, &_ShillService_serviceDesc.Streams[0], "/tast.cros.wifi.ShillService/ExpectShillProperty", opts...)
if err != nil {
return nil, err
}
x := &shillServiceExpectShillPropertyClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type ShillService_ExpectShillPropertyClient interface {
Recv() (*ExpectShillPropertyResponse, error)
grpc.ClientStream
}
type shillServiceExpectShillPropertyClient struct {
grpc.ClientStream
}
func (x *shillServiceExpectShillPropertyClient) Recv() (*ExpectShillPropertyResponse, error) {
m := new(ExpectShillPropertyResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
func (c *shillServiceClient) ProfileBasicTest(ctx context.Context, in *ProfileBasicTestRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/ProfileBasicTest", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) DiscoverBSSID(ctx context.Context, in *DiscoverBSSIDRequest, opts ...grpc.CallOption) (*DiscoverBSSIDResponse, error) {
out := new(DiscoverBSSIDResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/DiscoverBSSID", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) RequestRoam(ctx context.Context, in *RequestRoamRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/RequestRoam", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetDHCPProperties(ctx context.Context, in *SetDHCPPropertiesRequest, opts ...grpc.CallOption) (*SetDHCPPropertiesResponse, error) {
out := new(SetDHCPPropertiesResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetDHCPProperties", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) Reassociate(ctx context.Context, in *ReassociateRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/Reassociate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetWifiEnabled(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetWifiEnabledResponse, error) {
out := new(GetWifiEnabledResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetWifiEnabled", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetWifiEnabled(ctx context.Context, in *SetWifiEnabledRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetWifiEnabled", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) WaitForBSSID(ctx context.Context, in *WaitForBSSIDRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/WaitForBSSID", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) MACRandomizeSupport(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*MACRandomizeSupportResponse, error) {
out := new(MACRandomizeSupportResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/MACRandomizeSupport", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetMACRandomize(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetMACRandomizeResponse, error) {
out := new(GetMACRandomizeResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetMACRandomize", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) EAPAuthSkipped(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (ShillService_EAPAuthSkippedClient, error) {
stream, err := c.cc.NewStream(ctx, &_ShillService_serviceDesc.Streams[1], "/tast.cros.wifi.ShillService/EAPAuthSkipped", opts...)
if err != nil {
return nil, err
}
x := &shillServiceEAPAuthSkippedClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type ShillService_EAPAuthSkippedClient interface {
Recv() (*EAPAuthSkippedResponse, error)
grpc.ClientStream
}
type shillServiceEAPAuthSkippedClient struct {
grpc.ClientStream
}
func (x *shillServiceEAPAuthSkippedClient) Recv() (*EAPAuthSkippedResponse, error) {
m := new(EAPAuthSkippedResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
func (c *shillServiceClient) SuspendAssertConnect(ctx context.Context, in *SuspendAssertConnectRequest, opts ...grpc.CallOption) (*SuspendAssertConnectResponse, error) {
out := new(SuspendAssertConnectResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SuspendAssertConnect", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) Suspend(ctx context.Context, in *SuspendRequest, opts ...grpc.CallOption) (*SuspendResponse, error) {
out := new(SuspendResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/Suspend", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetGlobalFTProperty(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetGlobalFTPropertyResponse, error) {
out := new(GetGlobalFTPropertyResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetGlobalFTProperty", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetGlobalFTProperty(ctx context.Context, in *SetGlobalFTPropertyRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetGlobalFTProperty", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) DisconnectReason(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (ShillService_DisconnectReasonClient, error) {
stream, err := c.cc.NewStream(ctx, &_ShillService_serviceDesc.Streams[2], "/tast.cros.wifi.ShillService/DisconnectReason", opts...)
if err != nil {
return nil, err
}
x := &shillServiceDisconnectReasonClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type ShillService_DisconnectReasonClient interface {
Recv() (*DisconnectReasonResponse, error)
grpc.ClientStream
}
type shillServiceDisconnectReasonClient struct {
grpc.ClientStream
}
func (x *shillServiceDisconnectReasonClient) Recv() (*DisconnectReasonResponse, error) {
m := new(DisconnectReasonResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
func (c *shillServiceClient) FlushBSS(ctx context.Context, in *FlushBSSRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/FlushBSS", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) ResetTest(ctx context.Context, in *ResetTestRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/ResetTest", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) HealthCheck(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/HealthCheck", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetLoggingConfig(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetLoggingConfigResponse, error) {
out := new(GetLoggingConfigResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetLoggingConfig", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetLoggingConfig(ctx context.Context, in *SetLoggingConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetLoggingConfig", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) GetWakeOnWifi(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*GetWakeOnWifiResponse, error) {
out := new(GetWakeOnWifiResponse)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/GetWakeOnWifi", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) SetWakeOnWifi(ctx context.Context, in *SetWakeOnWifiRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/SetWakeOnWifi", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *shillServiceClient) CheckLastWakeReason(ctx context.Context, in *CheckLastWakeReasonRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := c.cc.Invoke(ctx, "/tast.cros.wifi.ShillService/CheckLastWakeReason", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// ShillServiceServer is the server API for ShillService service.
type ShillServiceServer interface {
// InitDUT initialize the DUT for WiFi testing.
InitDUT(context.Context, *InitDUTRequest) (*empty.Empty, error)
// ReinitTestState cleans and sets up the environment for a single WiFi testcase.
ReinitTestState(context.Context, *empty.Empty) (*empty.Empty, error)
// TearDown reverts the settings made in InitDUT (and also ReinitTestState).
TearDown(context.Context, *empty.Empty) (*empty.Empty, error)
// Connect attempts to connect WiFi network.
Connect(context.Context, *ConnectRequest) (*ConnectResponse, error)
// Disconnect attempts to disconnect from a service.
Disconnect(context.Context, *DisconnectRequest) (*empty.Empty, error)
// DeleteEntriesForSSID deletes all WiFi profile entries for a given ssid.
DeleteEntriesForSSID(context.Context, *DeleteEntriesForSSIDRequest) (*empty.Empty, error)
// QueryService queries shill service information.
QueryService(context.Context, *QueryServiceRequest) (*QueryServiceResponse, error)
// GetInterface returns the WiFi device interface name (e.g., wlan0).
GetInterface(context.Context, *empty.Empty) (*GetInterfaceResponse, error)
// GetIPv4Addrs returns the IPv4 addresses for the network interface.
GetIPv4Addrs(context.Context, *GetIPv4AddrsRequest) (*GetIPv4AddrsResponse, error)
// GetHardwareAddr returns the HardwareAddr for the network interface.
GetHardwareAddr(context.Context, *GetHardwareAddrRequest) (*GetHardwareAddrResponse, error)
// ExpectWifiFrequencies checks if the device discovers the given SSID on the specific frequencies.
ExpectWifiFrequencies(context.Context, *ExpectWifiFrequenciesRequest) (*empty.Empty, error)
// GetBgscanConfig returns the bgscan configuration the device's WiFi module currently uses.
GetBgscanConfig(context.Context, *empty.Empty) (*GetBgscanConfigResponse, error)
// SetBgscanConfig sets the device's WiFi module's bgscan configuration.
SetBgscanConfig(context.Context, *SetBgscanConfigRequest) (*empty.Empty, error)
// AssureDisconnect assures that the WiFi service has disconnected within timeout (nanoseconds).
AssureDisconnect(context.Context, *AssureDisconnectRequest) (*empty.Empty, error)
// DisableEnableTest disables and then enables the WiFi interface.
// This is the main body of the DisableEnable test.
DisableEnableTest(context.Context, *DisableEnableTestRequest) (*empty.Empty, error)
// RequestScans requests shill to trigger active scans on WiFi devices.
RequestScans(context.Context, *RequestScansRequest) (*empty.Empty, error)
// SetMACRandomize sets the MAC randomization setting on the WiFi device.
// The original setting is returned for ease of restoring.
SetMACRandomize(context.Context, *SetMACRandomizeRequest) (*SetMACRandomizeResponse, error)
// WaitScanIdle waits for not scanning state. If there's a running scan, it can
// wait for it to be done with timeout 10 seconds.
// This is useful when the test sets some parameters regarding scans and wants
// to avoid noices due to not yet ended scans.
WaitScanIdle(context.Context, *empty.Empty) (*empty.Empty, error)
// ConfigureAndAssertAutoConnect configures the matched shill service and then
// waits for the IsConnected property becomes true.
// Note that this function does not attempt to connect; it waits for auto
// connect instead.
ConfigureAndAssertAutoConnect(context.Context, *ConfigureAndAssertAutoConnectRequest) (*ConfigureAndAssertAutoConnectResponse, error)
// GetCurrentTime returns the current local time in the given format.
GetCurrentTime(context.Context, *empty.Empty) (*GetCurrentTimeResponse, error)
// SelectedService returns the object path of selected service of WiFi service.
SelectedService(context.Context, *empty.Empty) (*SelectedServiceResponse, error)
// ExpectShillProperty is a streaming gRPC, takes a shill service path, expects a list of property
// criteria in order, and takes a list of shill properties to monitor. When a property's value is
// expected, it responds the property's (key, value) pair. The method sends an empty response as the
// property watcher is set. A property matching criterion consists of a property name, a list of
// expected values, a list of excluded values, and a "CheckType". We say a criterion is met iff the
// property value is in one of the expected values and not in any of the excluded values. If the
// property value is one of the excluded values, the method fails immediately. The call monitors the
// specified shill properties and returns the monitor results as a chronological list of pairs
// (changed property, changed value) at the end.
// For CheckMethod, it has three methods:
// 1. CHECK_ONLY: checks if the criterion is met.
// 2. ON_CHANGE: waits for the property changes to the expected values.
// 3. CHECK_WAIT: checks if the criterion is met; if not, waits until the property's value is met.
ExpectShillProperty(*ExpectShillPropertyRequest, ShillService_ExpectShillPropertyServer) error
// ProfileBasicTest is the main body of the ProfileBasic test, which creates,
// pushes, and pops the profiles and asserts the connection states between
// those operations.
ProfileBasicTest(context.Context, *ProfileBasicTestRequest) (*empty.Empty, error)
// DiscoverBSSID discovers the specified BSSID by running a scan.
DiscoverBSSID(context.Context, *DiscoverBSSIDRequest) (*DiscoverBSSIDResponse, error)
// RequestRoam requests DUT to roam to the specified BSSID and waits until
// the DUT has roamed.
RequestRoam(context.Context, *RequestRoamRequest) (*empty.Empty, error)
// SetDHCPProperties sets the DHCP properties in shill and returns the original
// values.
SetDHCPProperties(context.Context, *SetDHCPPropertiesRequest) (*SetDHCPPropertiesResponse, error)
// Reassociate triggers reassociation with the current AP and waits until it
// has reconnected or the timeout (in nanoseconds) expires.
Reassociate(context.Context, *ReassociateRequest) (*empty.Empty, error)
// GetWifiEnabled checks to see if Wifi is an enabled technology on shill.
// This call will wait for WiFi to appear in available technologies so we
// can get correct enabled setting.
GetWifiEnabled(context.Context, *empty.Empty) (*GetWifiEnabledResponse, error)
// SetWifiEnabled persistently enables/disables Wifi via shill.
SetWifiEnabled(context.Context, *SetWifiEnabledRequest) (*empty.Empty, error)
// WaitForBSSID waits for a specific BSSID to be found.
WaitForBSSID(context.Context, *WaitForBSSIDRequest) (*empty.Empty, error)
// MACRandomizeSupport tells if MAC randomization is supported for the WiFi device.
MACRandomizeSupport(context.Context, *empty.Empty) (*MACRandomizeSupportResponse, error)
// GetMACRandomize tells if MAC randomization is enabled for the WiFi device.
GetMACRandomize(context.Context, *empty.Empty) (*GetMACRandomizeResponse, error)
// EAPAuthSkipped is a streaming gRPC, who watches wpa_supplicant's D-Bus signals until the next connection
// completes, and tells that the EAP authentication is skipped (i.e., PMKSA is cached and used) or not.
// Note that the method sends an empty response as the signal watcher is set.
EAPAuthSkipped(*empty.Empty, ShillService_EAPAuthSkippedServer) error
// SuspendAssertConnect suspends the DUT and waits for connection after resuming.
SuspendAssertConnect(context.Context, *SuspendAssertConnectRequest) (*SuspendAssertConnectResponse, error)
// Suspend suspends the DUT.
Suspend(context.Context, *SuspendRequest) (*SuspendResponse, error)
// GetGlobalFTProperty returns the WiFi.GlobalFTEnabled manager property value.
GetGlobalFTProperty(context.Context, *empty.Empty) (*GetGlobalFTPropertyResponse, error)
// SetGlobalFTProperty set the WiFi.GlobalFTEnabled manager property value.
SetGlobalFTProperty(context.Context, *SetGlobalFTPropertyRequest) (*empty.Empty, error)
// DisconnectReason is a streaming gRPC, who waits for the wpa_supplicant's
// DisconnectReason property change, and returns the code to the client.
// To notify the caller that it is ready, it sends an empty response after
// the signal watcher is initialized.
DisconnectReason(*empty.Empty, ShillService_DisconnectReasonServer) error
// FlushBSS flushes BSS entries over the specified age from wpa_supplicant's cache.
FlushBSS(context.Context, *FlushBSSRequest) (*empty.Empty, error)
// ResetTest is the main body of the Reset test, which resets/suspends and verifies the connection for several times.
ResetTest(context.Context, *ResetTestRequest) (*empty.Empty, error)
// HealthCheck examines if the DUT is healthy. If some tests fail to bring
// the WiFi device back, it treats the DUT as unhealthy. Testing host needs
// to reboot the DUT to refrain it from affecting the following tests.
HealthCheck(context.Context, *empty.Empty) (*empty.Empty, error)
// GetLoggingConfig returns the logging configuration the device currently uses.
GetLoggingConfig(context.Context, *empty.Empty) (*GetLoggingConfigResponse, error)
// SetLoggingConfig sets the device logging configuration.
SetLoggingConfig(context.Context, *SetLoggingConfigRequest) (*empty.Empty, error)
// GetWakeOnWifi gets WakeOnWiFi related properties of WiFi device.
GetWakeOnWifi(context.Context, *empty.Empty) (*GetWakeOnWifiResponse, error)
// SetWakeOnWifi sets WakeOnWiFi related properties of WiFi device.
SetWakeOnWifi(context.Context, *SetWakeOnWifiRequest) (*empty.Empty, error)
// CheckLastWakeReason checks if the last wake reason of WiFi device is as expected.
CheckLastWakeReason(context.Context, *CheckLastWakeReasonRequest) (*empty.Empty, error)
}
// UnimplementedShillServiceServer can be embedded to have forward compatible implementations.
type UnimplementedShillServiceServer struct {
}
func (*UnimplementedShillServiceServer) InitDUT(ctx context.Context, req *InitDUTRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method InitDUT not implemented")
}
func (*UnimplementedShillServiceServer) ReinitTestState(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReinitTestState not implemented")
}
func (*UnimplementedShillServiceServer) TearDown(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method TearDown not implemented")
}
func (*UnimplementedShillServiceServer) Connect(ctx context.Context, req *ConnectRequest) (*ConnectResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Connect not implemented")
}
func (*UnimplementedShillServiceServer) Disconnect(ctx context.Context, req *DisconnectRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Disconnect not implemented")
}
func (*UnimplementedShillServiceServer) DeleteEntriesForSSID(ctx context.Context, req *DeleteEntriesForSSIDRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteEntriesForSSID not implemented")
}
func (*UnimplementedShillServiceServer) QueryService(ctx context.Context, req *QueryServiceRequest) (*QueryServiceResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method QueryService not implemented")
}
func (*UnimplementedShillServiceServer) GetInterface(ctx context.Context, req *empty.Empty) (*GetInterfaceResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetInterface not implemented")
}
func (*UnimplementedShillServiceServer) GetIPv4Addrs(ctx context.Context, req *GetIPv4AddrsRequest) (*GetIPv4AddrsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetIPv4Addrs not implemented")
}
func (*UnimplementedShillServiceServer) GetHardwareAddr(ctx context.Context, req *GetHardwareAddrRequest) (*GetHardwareAddrResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetHardwareAddr not implemented")
}
func (*UnimplementedShillServiceServer) ExpectWifiFrequencies(ctx context.Context, req *ExpectWifiFrequenciesRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ExpectWifiFrequencies not implemented")
}
func (*UnimplementedShillServiceServer) GetBgscanConfig(ctx context.Context, req *empty.Empty) (*GetBgscanConfigResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetBgscanConfig not implemented")
}
func (*UnimplementedShillServiceServer) SetBgscanConfig(ctx context.Context, req *SetBgscanConfigRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetBgscanConfig not implemented")
}
func (*UnimplementedShillServiceServer) AssureDisconnect(ctx context.Context, req *AssureDisconnectRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method AssureDisconnect not implemented")
}
func (*UnimplementedShillServiceServer) DisableEnableTest(ctx context.Context, req *DisableEnableTestRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DisableEnableTest not implemented")
}
func (*UnimplementedShillServiceServer) RequestScans(ctx context.Context, req *RequestScansRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RequestScans not implemented")
}
func (*UnimplementedShillServiceServer) SetMACRandomize(ctx context.Context, req *SetMACRandomizeRequest) (*SetMACRandomizeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetMACRandomize not implemented")
}
func (*UnimplementedShillServiceServer) WaitScanIdle(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method WaitScanIdle not implemented")
}
func (*UnimplementedShillServiceServer) ConfigureAndAssertAutoConnect(ctx context.Context, req *ConfigureAndAssertAutoConnectRequest) (*ConfigureAndAssertAutoConnectResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ConfigureAndAssertAutoConnect not implemented")
}
func (*UnimplementedShillServiceServer) GetCurrentTime(ctx context.Context, req *empty.Empty) (*GetCurrentTimeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetCurrentTime not implemented")
}
func (*UnimplementedShillServiceServer) SelectedService(ctx context.Context, req *empty.Empty) (*SelectedServiceResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SelectedService not implemented")
}
func (*UnimplementedShillServiceServer) ExpectShillProperty(req *ExpectShillPropertyRequest, srv ShillService_ExpectShillPropertyServer) error {
return status.Errorf(codes.Unimplemented, "method ExpectShillProperty not implemented")
}
func (*UnimplementedShillServiceServer) ProfileBasicTest(ctx context.Context, req *ProfileBasicTestRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProfileBasicTest not implemented")
}
func (*UnimplementedShillServiceServer) DiscoverBSSID(ctx context.Context, req *DiscoverBSSIDRequest) (*DiscoverBSSIDResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method DiscoverBSSID not implemented")
}
func (*UnimplementedShillServiceServer) RequestRoam(ctx context.Context, req *RequestRoamRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RequestRoam not implemented")
}
func (*UnimplementedShillServiceServer) SetDHCPProperties(ctx context.Context, req *SetDHCPPropertiesRequest) (*SetDHCPPropertiesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetDHCPProperties not implemented")
}
func (*UnimplementedShillServiceServer) Reassociate(ctx context.Context, req *ReassociateRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Reassociate not implemented")
}
func (*UnimplementedShillServiceServer) GetWifiEnabled(ctx context.Context, req *empty.Empty) (*GetWifiEnabledResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetWifiEnabled not implemented")
}
func (*UnimplementedShillServiceServer) SetWifiEnabled(ctx context.Context, req *SetWifiEnabledRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetWifiEnabled not implemented")
}
func (*UnimplementedShillServiceServer) WaitForBSSID(ctx context.Context, req *WaitForBSSIDRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method WaitForBSSID not implemented")
}
func (*UnimplementedShillServiceServer) MACRandomizeSupport(ctx context.Context, req *empty.Empty) (*MACRandomizeSupportResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method MACRandomizeSupport not implemented")
}
func (*UnimplementedShillServiceServer) GetMACRandomize(ctx context.Context, req *empty.Empty) (*GetMACRandomizeResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMACRandomize not implemented")
}
func (*UnimplementedShillServiceServer) EAPAuthSkipped(req *empty.Empty, srv ShillService_EAPAuthSkippedServer) error {
return status.Errorf(codes.Unimplemented, "method EAPAuthSkipped not implemented")
}
func (*UnimplementedShillServiceServer) SuspendAssertConnect(ctx context.Context, req *SuspendAssertConnectRequest) (*SuspendAssertConnectResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SuspendAssertConnect not implemented")
}
func (*UnimplementedShillServiceServer) Suspend(ctx context.Context, req *SuspendRequest) (*SuspendResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Suspend not implemented")
}
func (*UnimplementedShillServiceServer) GetGlobalFTProperty(ctx context.Context, req *empty.Empty) (*GetGlobalFTPropertyResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetGlobalFTProperty not implemented")
}
func (*UnimplementedShillServiceServer) SetGlobalFTProperty(ctx context.Context, req *SetGlobalFTPropertyRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetGlobalFTProperty not implemented")
}
func (*UnimplementedShillServiceServer) DisconnectReason(req *empty.Empty, srv ShillService_DisconnectReasonServer) error {
return status.Errorf(codes.Unimplemented, "method DisconnectReason not implemented")
}
func (*UnimplementedShillServiceServer) FlushBSS(ctx context.Context, req *FlushBSSRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method FlushBSS not implemented")
}
func (*UnimplementedShillServiceServer) ResetTest(ctx context.Context, req *ResetTestRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResetTest not implemented")
}
func (*UnimplementedShillServiceServer) HealthCheck(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method HealthCheck not implemented")
}
func (*UnimplementedShillServiceServer) GetLoggingConfig(ctx context.Context, req *empty.Empty) (*GetLoggingConfigResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoggingConfig not implemented")
}
func (*UnimplementedShillServiceServer) SetLoggingConfig(ctx context.Context, req *SetLoggingConfigRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetLoggingConfig not implemented")
}
func (*UnimplementedShillServiceServer) GetWakeOnWifi(ctx context.Context, req *empty.Empty) (*GetWakeOnWifiResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetWakeOnWifi not implemented")
}
func (*UnimplementedShillServiceServer) SetWakeOnWifi(ctx context.Context, req *SetWakeOnWifiRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetWakeOnWifi not implemented")
}
func (*UnimplementedShillServiceServer) CheckLastWakeReason(ctx context.Context, req *CheckLastWakeReasonRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CheckLastWakeReason not implemented")
}
func RegisterShillServiceServer(s *grpc.Server, srv ShillServiceServer) {
s.RegisterService(&_ShillService_serviceDesc, srv)
}
func _ShillService_InitDUT_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(InitDUTRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).InitDUT(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/InitDUT",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).InitDUT(ctx, req.(*InitDUTRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_ReinitTestState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).ReinitTestState(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/ReinitTestState",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).ReinitTestState(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_TearDown_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).TearDown(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/TearDown",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).TearDown(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_Connect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ConnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).Connect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/Connect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).Connect(ctx, req.(*ConnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_Disconnect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DisconnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).Disconnect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/Disconnect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).Disconnect(ctx, req.(*DisconnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_DeleteEntriesForSSID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteEntriesForSSIDRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).DeleteEntriesForSSID(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/DeleteEntriesForSSID",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).DeleteEntriesForSSID(ctx, req.(*DeleteEntriesForSSIDRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_QueryService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QueryServiceRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).QueryService(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/QueryService",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).QueryService(ctx, req.(*QueryServiceRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetInterface_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetInterface(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetInterface",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetInterface(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetIPv4Addrs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetIPv4AddrsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetIPv4Addrs(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetIPv4Addrs",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetIPv4Addrs(ctx, req.(*GetIPv4AddrsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetHardwareAddr_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetHardwareAddrRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetHardwareAddr(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetHardwareAddr",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetHardwareAddr(ctx, req.(*GetHardwareAddrRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_ExpectWifiFrequencies_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExpectWifiFrequenciesRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).ExpectWifiFrequencies(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/ExpectWifiFrequencies",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).ExpectWifiFrequencies(ctx, req.(*ExpectWifiFrequenciesRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetBgscanConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetBgscanConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetBgscanConfig",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetBgscanConfig(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetBgscanConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetBgscanConfigRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetBgscanConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetBgscanConfig",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetBgscanConfig(ctx, req.(*SetBgscanConfigRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_AssureDisconnect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AssureDisconnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).AssureDisconnect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/AssureDisconnect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).AssureDisconnect(ctx, req.(*AssureDisconnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_DisableEnableTest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DisableEnableTestRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).DisableEnableTest(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/DisableEnableTest",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).DisableEnableTest(ctx, req.(*DisableEnableTestRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_RequestScans_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RequestScansRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).RequestScans(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/RequestScans",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).RequestScans(ctx, req.(*RequestScansRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetMACRandomize_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetMACRandomizeRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetMACRandomize(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetMACRandomize",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetMACRandomize(ctx, req.(*SetMACRandomizeRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_WaitScanIdle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).WaitScanIdle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/WaitScanIdle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).WaitScanIdle(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_ConfigureAndAssertAutoConnect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ConfigureAndAssertAutoConnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).ConfigureAndAssertAutoConnect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/ConfigureAndAssertAutoConnect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).ConfigureAndAssertAutoConnect(ctx, req.(*ConfigureAndAssertAutoConnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetCurrentTime_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetCurrentTime(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetCurrentTime",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetCurrentTime(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SelectedService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SelectedService(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SelectedService",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SelectedService(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_ExpectShillProperty_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(ExpectShillPropertyRequest)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(ShillServiceServer).ExpectShillProperty(m, &shillServiceExpectShillPropertyServer{stream})
}
type ShillService_ExpectShillPropertyServer interface {
Send(*ExpectShillPropertyResponse) error
grpc.ServerStream
}
type shillServiceExpectShillPropertyServer struct {
grpc.ServerStream
}
func (x *shillServiceExpectShillPropertyServer) Send(m *ExpectShillPropertyResponse) error {
return x.ServerStream.SendMsg(m)
}
func _ShillService_ProfileBasicTest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ProfileBasicTestRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).ProfileBasicTest(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/ProfileBasicTest",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).ProfileBasicTest(ctx, req.(*ProfileBasicTestRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_DiscoverBSSID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DiscoverBSSIDRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).DiscoverBSSID(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/DiscoverBSSID",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).DiscoverBSSID(ctx, req.(*DiscoverBSSIDRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_RequestRoam_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RequestRoamRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).RequestRoam(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/RequestRoam",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).RequestRoam(ctx, req.(*RequestRoamRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetDHCPProperties_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetDHCPPropertiesRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetDHCPProperties(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetDHCPProperties",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetDHCPProperties(ctx, req.(*SetDHCPPropertiesRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_Reassociate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ReassociateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).Reassociate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/Reassociate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).Reassociate(ctx, req.(*ReassociateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetWifiEnabled_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetWifiEnabled(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetWifiEnabled",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetWifiEnabled(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetWifiEnabled_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetWifiEnabledRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetWifiEnabled(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetWifiEnabled",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetWifiEnabled(ctx, req.(*SetWifiEnabledRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_WaitForBSSID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(WaitForBSSIDRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).WaitForBSSID(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/WaitForBSSID",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).WaitForBSSID(ctx, req.(*WaitForBSSIDRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_MACRandomizeSupport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).MACRandomizeSupport(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/MACRandomizeSupport",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).MACRandomizeSupport(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetMACRandomize_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetMACRandomize(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetMACRandomize",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetMACRandomize(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_EAPAuthSkipped_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(empty.Empty)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(ShillServiceServer).EAPAuthSkipped(m, &shillServiceEAPAuthSkippedServer{stream})
}
type ShillService_EAPAuthSkippedServer interface {
Send(*EAPAuthSkippedResponse) error
grpc.ServerStream
}
type shillServiceEAPAuthSkippedServer struct {
grpc.ServerStream
}
func (x *shillServiceEAPAuthSkippedServer) Send(m *EAPAuthSkippedResponse) error {
return x.ServerStream.SendMsg(m)
}
func _ShillService_SuspendAssertConnect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SuspendAssertConnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SuspendAssertConnect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SuspendAssertConnect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SuspendAssertConnect(ctx, req.(*SuspendAssertConnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_Suspend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SuspendRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).Suspend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/Suspend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).Suspend(ctx, req.(*SuspendRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetGlobalFTProperty_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetGlobalFTProperty(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetGlobalFTProperty",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetGlobalFTProperty(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetGlobalFTProperty_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetGlobalFTPropertyRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetGlobalFTProperty(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetGlobalFTProperty",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetGlobalFTProperty(ctx, req.(*SetGlobalFTPropertyRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_DisconnectReason_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(empty.Empty)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(ShillServiceServer).DisconnectReason(m, &shillServiceDisconnectReasonServer{stream})
}
type ShillService_DisconnectReasonServer interface {
Send(*DisconnectReasonResponse) error
grpc.ServerStream
}
type shillServiceDisconnectReasonServer struct {
grpc.ServerStream
}
func (x *shillServiceDisconnectReasonServer) Send(m *DisconnectReasonResponse) error {
return x.ServerStream.SendMsg(m)
}
func _ShillService_FlushBSS_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(FlushBSSRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).FlushBSS(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/FlushBSS",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).FlushBSS(ctx, req.(*FlushBSSRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_ResetTest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ResetTestRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).ResetTest(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/ResetTest",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).ResetTest(ctx, req.(*ResetTestRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_HealthCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).HealthCheck(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/HealthCheck",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).HealthCheck(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetLoggingConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetLoggingConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetLoggingConfig",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetLoggingConfig(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetLoggingConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetLoggingConfigRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetLoggingConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetLoggingConfig",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetLoggingConfig(ctx, req.(*SetLoggingConfigRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_GetWakeOnWifi_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).GetWakeOnWifi(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/GetWakeOnWifi",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).GetWakeOnWifi(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_SetWakeOnWifi_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetWakeOnWifiRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).SetWakeOnWifi(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/SetWakeOnWifi",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).SetWakeOnWifi(ctx, req.(*SetWakeOnWifiRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ShillService_CheckLastWakeReason_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CheckLastWakeReasonRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ShillServiceServer).CheckLastWakeReason(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/tast.cros.wifi.ShillService/CheckLastWakeReason",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ShillServiceServer).CheckLastWakeReason(ctx, req.(*CheckLastWakeReasonRequest))
}
return interceptor(ctx, in, info, handler)
}
var _ShillService_serviceDesc = grpc.ServiceDesc{
ServiceName: "tast.cros.wifi.ShillService",
HandlerType: (*ShillServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "InitDUT",
Handler: _ShillService_InitDUT_Handler,
},
{
MethodName: "ReinitTestState",
Handler: _ShillService_ReinitTestState_Handler,
},
{
MethodName: "TearDown",
Handler: _ShillService_TearDown_Handler,
},
{
MethodName: "Connect",
Handler: _ShillService_Connect_Handler,
},
{
MethodName: "Disconnect",
Handler: _ShillService_Disconnect_Handler,
},
{
MethodName: "DeleteEntriesForSSID",
Handler: _ShillService_DeleteEntriesForSSID_Handler,
},
{
MethodName: "QueryService",
Handler: _ShillService_QueryService_Handler,
},
{
MethodName: "GetInterface",
Handler: _ShillService_GetInterface_Handler,
},
{
MethodName: "GetIPv4Addrs",
Handler: _ShillService_GetIPv4Addrs_Handler,
},
{
MethodName: "GetHardwareAddr",
Handler: _ShillService_GetHardwareAddr_Handler,
},
{
MethodName: "ExpectWifiFrequencies",
Handler: _ShillService_ExpectWifiFrequencies_Handler,
},
{
MethodName: "GetBgscanConfig",
Handler: _ShillService_GetBgscanConfig_Handler,
},
{
MethodName: "SetBgscanConfig",
Handler: _ShillService_SetBgscanConfig_Handler,
},
{
MethodName: "AssureDisconnect",
Handler: _ShillService_AssureDisconnect_Handler,
},
{
MethodName: "DisableEnableTest",
Handler: _ShillService_DisableEnableTest_Handler,
},
{
MethodName: "RequestScans",
Handler: _ShillService_RequestScans_Handler,
},
{
MethodName: "SetMACRandomize",
Handler: _ShillService_SetMACRandomize_Handler,
},
{
MethodName: "WaitScanIdle",
Handler: _ShillService_WaitScanIdle_Handler,
},
{
MethodName: "ConfigureAndAssertAutoConnect",
Handler: _ShillService_ConfigureAndAssertAutoConnect_Handler,
},
{
MethodName: "GetCurrentTime",
Handler: _ShillService_GetCurrentTime_Handler,
},
{
MethodName: "SelectedService",
Handler: _ShillService_SelectedService_Handler,
},
{
MethodName: "ProfileBasicTest",
Handler: _ShillService_ProfileBasicTest_Handler,
},
{
MethodName: "DiscoverBSSID",
Handler: _ShillService_DiscoverBSSID_Handler,
},
{
MethodName: "RequestRoam",
Handler: _ShillService_RequestRoam_Handler,
},
{
MethodName: "SetDHCPProperties",
Handler: _ShillService_SetDHCPProperties_Handler,
},
{
MethodName: "Reassociate",
Handler: _ShillService_Reassociate_Handler,
},
{
MethodName: "GetWifiEnabled",
Handler: _ShillService_GetWifiEnabled_Handler,
},
{
MethodName: "SetWifiEnabled",
Handler: _ShillService_SetWifiEnabled_Handler,
},
{
MethodName: "WaitForBSSID",
Handler: _ShillService_WaitForBSSID_Handler,
},
{
MethodName: "MACRandomizeSupport",
Handler: _ShillService_MACRandomizeSupport_Handler,
},
{
MethodName: "GetMACRandomize",
Handler: _ShillService_GetMACRandomize_Handler,
},
{
MethodName: "SuspendAssertConnect",
Handler: _ShillService_SuspendAssertConnect_Handler,
},
{
MethodName: "Suspend",
Handler: _ShillService_Suspend_Handler,
},
{
MethodName: "GetGlobalFTProperty",
Handler: _ShillService_GetGlobalFTProperty_Handler,
},
{
MethodName: "SetGlobalFTProperty",
Handler: _ShillService_SetGlobalFTProperty_Handler,
},
{
MethodName: "FlushBSS",
Handler: _ShillService_FlushBSS_Handler,
},
{
MethodName: "ResetTest",
Handler: _ShillService_ResetTest_Handler,
},
{
MethodName: "HealthCheck",
Handler: _ShillService_HealthCheck_Handler,
},
{
MethodName: "GetLoggingConfig",
Handler: _ShillService_GetLoggingConfig_Handler,
},
{
MethodName: "SetLoggingConfig",
Handler: _ShillService_SetLoggingConfig_Handler,
},
{
MethodName: "GetWakeOnWifi",
Handler: _ShillService_GetWakeOnWifi_Handler,
},
{
MethodName: "SetWakeOnWifi",
Handler: _ShillService_SetWakeOnWifi_Handler,
},
{
MethodName: "CheckLastWakeReason",
Handler: _ShillService_CheckLastWakeReason_Handler,
},
},
Streams: []grpc.StreamDesc{
{
StreamName: "ExpectShillProperty",
Handler: _ShillService_ExpectShillProperty_Handler,
ServerStreams: true,
},
{
StreamName: "EAPAuthSkipped",
Handler: _ShillService_EAPAuthSkipped_Handler,
ServerStreams: true,
},
{
StreamName: "DisconnectReason",
Handler: _ShillService_DisconnectReason_Handler,
ServerStreams: true,
},
},
Metadata: "shill_service.proto",
}