NetworkManager.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.2
  4. // protoc v5.29.3
  5. // source: gRPC_Model/NetworkManager.proto
  6. package gRPC_Model
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type NetworkManagerDeviceStatus struct {
  20. state protoimpl.MessageState `protogen:"open.v1"`
  21. Device string `protobuf:"bytes,1,opt,name=Device,proto3" json:"Device,omitempty"`
  22. Type string `protobuf:"bytes,2,opt,name=Type,proto3" json:"Type,omitempty"`
  23. State string `protobuf:"bytes,3,opt,name=State,proto3" json:"State,omitempty"`
  24. IP4Connectivity string `protobuf:"bytes,4,opt,name=IP4Connectivity,proto3" json:"IP4Connectivity,omitempty"`
  25. IP6Connectivity string `protobuf:"bytes,5,opt,name=IP6Connectivity,proto3" json:"IP6Connectivity,omitempty"`
  26. Connection string `protobuf:"bytes,6,opt,name=Connection,proto3" json:"Connection,omitempty"`
  27. ConUUID string `protobuf:"bytes,7,opt,name=ConUUID,proto3" json:"ConUUID,omitempty"`
  28. unknownFields protoimpl.UnknownFields
  29. sizeCache protoimpl.SizeCache
  30. }
  31. func (x *NetworkManagerDeviceStatus) Reset() {
  32. *x = NetworkManagerDeviceStatus{}
  33. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. func (x *NetworkManagerDeviceStatus) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*NetworkManagerDeviceStatus) ProtoMessage() {}
  41. func (x *NetworkManagerDeviceStatus) ProtoReflect() protoreflect.Message {
  42. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[0]
  43. if x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use NetworkManagerDeviceStatus.ProtoReflect.Descriptor instead.
  53. func (*NetworkManagerDeviceStatus) Descriptor() ([]byte, []int) {
  54. return file_gRPC_Model_NetworkManager_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *NetworkManagerDeviceStatus) GetDevice() string {
  57. if x != nil {
  58. return x.Device
  59. }
  60. return ""
  61. }
  62. func (x *NetworkManagerDeviceStatus) GetType() string {
  63. if x != nil {
  64. return x.Type
  65. }
  66. return ""
  67. }
  68. func (x *NetworkManagerDeviceStatus) GetState() string {
  69. if x != nil {
  70. return x.State
  71. }
  72. return ""
  73. }
  74. func (x *NetworkManagerDeviceStatus) GetIP4Connectivity() string {
  75. if x != nil {
  76. return x.IP4Connectivity
  77. }
  78. return ""
  79. }
  80. func (x *NetworkManagerDeviceStatus) GetIP6Connectivity() string {
  81. if x != nil {
  82. return x.IP6Connectivity
  83. }
  84. return ""
  85. }
  86. func (x *NetworkManagerDeviceStatus) GetConnection() string {
  87. if x != nil {
  88. return x.Connection
  89. }
  90. return ""
  91. }
  92. func (x *NetworkManagerDeviceStatus) GetConUUID() string {
  93. if x != nil {
  94. return x.ConUUID
  95. }
  96. return ""
  97. }
  98. type NetworkManagerDeviceStatusList struct {
  99. state protoimpl.MessageState `protogen:"open.v1"`
  100. Value []*NetworkManagerDeviceStatus `protobuf:"bytes,1,rep,name=Value,proto3" json:"Value,omitempty"`
  101. unknownFields protoimpl.UnknownFields
  102. sizeCache protoimpl.SizeCache
  103. }
  104. func (x *NetworkManagerDeviceStatusList) Reset() {
  105. *x = NetworkManagerDeviceStatusList{}
  106. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[1]
  107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  108. ms.StoreMessageInfo(mi)
  109. }
  110. func (x *NetworkManagerDeviceStatusList) String() string {
  111. return protoimpl.X.MessageStringOf(x)
  112. }
  113. func (*NetworkManagerDeviceStatusList) ProtoMessage() {}
  114. func (x *NetworkManagerDeviceStatusList) ProtoReflect() protoreflect.Message {
  115. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[1]
  116. if x != nil {
  117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  118. if ms.LoadMessageInfo() == nil {
  119. ms.StoreMessageInfo(mi)
  120. }
  121. return ms
  122. }
  123. return mi.MessageOf(x)
  124. }
  125. // Deprecated: Use NetworkManagerDeviceStatusList.ProtoReflect.Descriptor instead.
  126. func (*NetworkManagerDeviceStatusList) Descriptor() ([]byte, []int) {
  127. return file_gRPC_Model_NetworkManager_proto_rawDescGZIP(), []int{1}
  128. }
  129. func (x *NetworkManagerDeviceStatusList) GetValue() []*NetworkManagerDeviceStatus {
  130. if x != nil {
  131. return x.Value
  132. }
  133. return nil
  134. }
  135. type Ethernet struct {
  136. state protoimpl.MessageState `protogen:"open.v1"`
  137. MacAddress *string `protobuf:"bytes,1,opt,name=MacAddress,proto3,oneof" json:"MacAddress,omitempty"`
  138. Id *string `protobuf:"bytes,2,opt,name=Id,proto3,oneof" json:"Id,omitempty"`
  139. Ipv4Addresses string `protobuf:"bytes,3,opt,name=Ipv4Addresses,proto3" json:"Ipv4Addresses,omitempty"`
  140. Ipv4Method *string `protobuf:"bytes,4,opt,name=Ipv4Method,proto3,oneof" json:"Ipv4Method,omitempty"`
  141. DNS []string `protobuf:"bytes,5,rep,name=DNS,proto3" json:"DNS,omitempty"`
  142. Gateway string `protobuf:"bytes,6,opt,name=Gateway,proto3" json:"Gateway,omitempty"`
  143. unknownFields protoimpl.UnknownFields
  144. sizeCache protoimpl.SizeCache
  145. }
  146. func (x *Ethernet) Reset() {
  147. *x = Ethernet{}
  148. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[2]
  149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  150. ms.StoreMessageInfo(mi)
  151. }
  152. func (x *Ethernet) String() string {
  153. return protoimpl.X.MessageStringOf(x)
  154. }
  155. func (*Ethernet) ProtoMessage() {}
  156. func (x *Ethernet) ProtoReflect() protoreflect.Message {
  157. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[2]
  158. if x != nil {
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. if ms.LoadMessageInfo() == nil {
  161. ms.StoreMessageInfo(mi)
  162. }
  163. return ms
  164. }
  165. return mi.MessageOf(x)
  166. }
  167. // Deprecated: Use Ethernet.ProtoReflect.Descriptor instead.
  168. func (*Ethernet) Descriptor() ([]byte, []int) {
  169. return file_gRPC_Model_NetworkManager_proto_rawDescGZIP(), []int{2}
  170. }
  171. func (x *Ethernet) GetMacAddress() string {
  172. if x != nil && x.MacAddress != nil {
  173. return *x.MacAddress
  174. }
  175. return ""
  176. }
  177. func (x *Ethernet) GetId() string {
  178. if x != nil && x.Id != nil {
  179. return *x.Id
  180. }
  181. return ""
  182. }
  183. func (x *Ethernet) GetIpv4Addresses() string {
  184. if x != nil {
  185. return x.Ipv4Addresses
  186. }
  187. return ""
  188. }
  189. func (x *Ethernet) GetIpv4Method() string {
  190. if x != nil && x.Ipv4Method != nil {
  191. return *x.Ipv4Method
  192. }
  193. return ""
  194. }
  195. func (x *Ethernet) GetDNS() []string {
  196. if x != nil {
  197. return x.DNS
  198. }
  199. return nil
  200. }
  201. func (x *Ethernet) GetGateway() string {
  202. if x != nil {
  203. return x.Gateway
  204. }
  205. return ""
  206. }
  207. type Hotspot struct {
  208. state protoimpl.MessageState `protogen:"open.v1"`
  209. IfName string `protobuf:"bytes,1,opt,name=IfName,proto3" json:"IfName,omitempty"`
  210. SSID string `protobuf:"bytes,2,opt,name=SSID,proto3" json:"SSID,omitempty"`
  211. Password string `protobuf:"bytes,3,opt,name=Password,proto3" json:"Password,omitempty"`
  212. unknownFields protoimpl.UnknownFields
  213. sizeCache protoimpl.SizeCache
  214. }
  215. func (x *Hotspot) Reset() {
  216. *x = Hotspot{}
  217. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[3]
  218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  219. ms.StoreMessageInfo(mi)
  220. }
  221. func (x *Hotspot) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*Hotspot) ProtoMessage() {}
  225. func (x *Hotspot) ProtoReflect() protoreflect.Message {
  226. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[3]
  227. if x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use Hotspot.ProtoReflect.Descriptor instead.
  237. func (*Hotspot) Descriptor() ([]byte, []int) {
  238. return file_gRPC_Model_NetworkManager_proto_rawDescGZIP(), []int{3}
  239. }
  240. func (x *Hotspot) GetIfName() string {
  241. if x != nil {
  242. return x.IfName
  243. }
  244. return ""
  245. }
  246. func (x *Hotspot) GetSSID() string {
  247. if x != nil {
  248. return x.SSID
  249. }
  250. return ""
  251. }
  252. func (x *Hotspot) GetPassword() string {
  253. if x != nil {
  254. return x.Password
  255. }
  256. return ""
  257. }
  258. type DeviceInterfaceName struct {
  259. state protoimpl.MessageState `protogen:"open.v1"`
  260. Value string `protobuf:"bytes,1,opt,name=Value,proto3" json:"Value,omitempty"`
  261. unknownFields protoimpl.UnknownFields
  262. sizeCache protoimpl.SizeCache
  263. }
  264. func (x *DeviceInterfaceName) Reset() {
  265. *x = DeviceInterfaceName{}
  266. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[4]
  267. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  268. ms.StoreMessageInfo(mi)
  269. }
  270. func (x *DeviceInterfaceName) String() string {
  271. return protoimpl.X.MessageStringOf(x)
  272. }
  273. func (*DeviceInterfaceName) ProtoMessage() {}
  274. func (x *DeviceInterfaceName) ProtoReflect() protoreflect.Message {
  275. mi := &file_gRPC_Model_NetworkManager_proto_msgTypes[4]
  276. if x != nil {
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. if ms.LoadMessageInfo() == nil {
  279. ms.StoreMessageInfo(mi)
  280. }
  281. return ms
  282. }
  283. return mi.MessageOf(x)
  284. }
  285. // Deprecated: Use DeviceInterfaceName.ProtoReflect.Descriptor instead.
  286. func (*DeviceInterfaceName) Descriptor() ([]byte, []int) {
  287. return file_gRPC_Model_NetworkManager_proto_rawDescGZIP(), []int{4}
  288. }
  289. func (x *DeviceInterfaceName) GetValue() string {
  290. if x != nil {
  291. return x.Value
  292. }
  293. return ""
  294. }
  295. var File_gRPC_Model_NetworkManager_proto protoreflect.FileDescriptor
  296. var file_gRPC_Model_NetworkManager_proto_rawDesc = []byte{
  297. 0x0a, 0x1f, 0x67, 0x52, 0x50, 0x43, 0x5f, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x2f, 0x4e, 0x65, 0x74,
  298. 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  299. 0x6f, 0x1a, 0x18, 0x67, 0x52, 0x50, 0x43, 0x5f, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x2f, 0x67, 0x65,
  300. 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xec, 0x01, 0x0a, 0x1a,
  301. 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65,
  302. 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x44, 0x65,
  303. 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x44, 0x65, 0x76, 0x69,
  304. 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  305. 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18,
  306. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x28, 0x0a, 0x0f,
  307. 0x49, 0x50, 0x34, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18,
  308. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x49, 0x50, 0x34, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
  309. 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x49, 0x50, 0x36, 0x43, 0x6f, 0x6e,
  310. 0x6e, 0x65, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  311. 0x0f, 0x49, 0x50, 0x36, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  312. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06,
  313. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  314. 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x55, 0x55, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28,
  315. 0x09, 0x52, 0x07, 0x43, 0x6f, 0x6e, 0x55, 0x55, 0x49, 0x44, 0x22, 0x53, 0x0a, 0x1e, 0x4e, 0x65,
  316. 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x76, 0x69,
  317. 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x0a, 0x05,
  318. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x4e, 0x65,
  319. 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x76, 0x69,
  320. 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22,
  321. 0xe0, 0x01, 0x0a, 0x08, 0x45, 0x74, 0x68, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x12, 0x23, 0x0a, 0x0a,
  322. 0x4d, 0x61, 0x63, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  323. 0x48, 0x00, 0x52, 0x0a, 0x4d, 0x61, 0x63, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01,
  324. 0x01, 0x12, 0x13, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52,
  325. 0x02, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0d, 0x49, 0x70, 0x76, 0x34, 0x41, 0x64,
  326. 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x49,
  327. 0x70, 0x76, 0x34, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0a,
  328. 0x49, 0x70, 0x76, 0x34, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  329. 0x48, 0x02, 0x52, 0x0a, 0x49, 0x70, 0x76, 0x34, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x88, 0x01,
  330. 0x01, 0x12, 0x10, 0x0a, 0x03, 0x44, 0x4e, 0x53, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03,
  331. 0x44, 0x4e, 0x53, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x18, 0x06,
  332. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x42, 0x0d, 0x0a,
  333. 0x0b, 0x5f, 0x4d, 0x61, 0x63, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x05, 0x0a, 0x03,
  334. 0x5f, 0x49, 0x64, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x49, 0x70, 0x76, 0x34, 0x4d, 0x65, 0x74, 0x68,
  335. 0x6f, 0x64, 0x22, 0x51, 0x0a, 0x07, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x12, 0x16, 0x0a,
  336. 0x06, 0x49, 0x66, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x49,
  337. 0x66, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x53, 0x53, 0x49, 0x44, 0x18, 0x02, 0x20,
  338. 0x01, 0x28, 0x09, 0x52, 0x04, 0x53, 0x53, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x61, 0x73,
  339. 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x50, 0x61, 0x73,
  340. 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x2b, 0x0a, 0x13, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49,
  341. 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
  342. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x56, 0x61, 0x6c,
  343. 0x75, 0x65, 0x32, 0xaa, 0x02, 0x0a, 0x0e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61,
  344. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x0c, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53,
  345. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x06, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1f, 0x2e,
  346. 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65,
  347. 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28,
  348. 0x0a, 0x13, 0x45, 0x74, 0x68, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61,
  349. 0x74, 0x69, 0x63, 0x49, 0x50, 0x12, 0x09, 0x2e, 0x45, 0x74, 0x68, 0x65, 0x72, 0x6e, 0x65, 0x74,
  350. 0x1a, 0x06, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x2f, 0x0a, 0x0c, 0x45, 0x74, 0x68, 0x65,
  351. 0x72, 0x6e, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63,
  352. 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x09,
  353. 0x2e, 0x45, 0x74, 0x68, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x12, 0x21, 0x0a, 0x0d, 0x43, 0x72, 0x65,
  354. 0x61, 0x74, 0x65, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x12, 0x08, 0x2e, 0x48, 0x6f, 0x74,
  355. 0x73, 0x70, 0x6f, 0x74, 0x1a, 0x06, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x21, 0x0a, 0x0d,
  356. 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x12, 0x08, 0x2e,
  357. 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x1a, 0x06, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12,
  358. 0x1d, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x6e, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x12, 0x06,
  359. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x06, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x1f,
  360. 0x0a, 0x0b, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x06, 0x2e,
  361. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x08, 0x2e, 0x48, 0x6f, 0x74, 0x73, 0x70, 0x6f, 0x74, 0x42,
  362. 0x0e, 0x5a, 0x0c, 0x2e, 0x2f, 0x67, 0x52, 0x50, 0x43, 0x5f, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x62,
  363. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  364. }
  365. var (
  366. file_gRPC_Model_NetworkManager_proto_rawDescOnce sync.Once
  367. file_gRPC_Model_NetworkManager_proto_rawDescData = file_gRPC_Model_NetworkManager_proto_rawDesc
  368. )
  369. func file_gRPC_Model_NetworkManager_proto_rawDescGZIP() []byte {
  370. file_gRPC_Model_NetworkManager_proto_rawDescOnce.Do(func() {
  371. file_gRPC_Model_NetworkManager_proto_rawDescData = protoimpl.X.CompressGZIP(file_gRPC_Model_NetworkManager_proto_rawDescData)
  372. })
  373. return file_gRPC_Model_NetworkManager_proto_rawDescData
  374. }
  375. var file_gRPC_Model_NetworkManager_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
  376. var file_gRPC_Model_NetworkManager_proto_goTypes = []any{
  377. (*NetworkManagerDeviceStatus)(nil), // 0: NetworkManagerDeviceStatus
  378. (*NetworkManagerDeviceStatusList)(nil), // 1: NetworkManagerDeviceStatusList
  379. (*Ethernet)(nil), // 2: Ethernet
  380. (*Hotspot)(nil), // 3: Hotspot
  381. (*DeviceInterfaceName)(nil), // 4: DeviceInterfaceName
  382. (*Empty)(nil), // 5: Empty
  383. }
  384. var file_gRPC_Model_NetworkManager_proto_depIdxs = []int32{
  385. 0, // 0: NetworkManagerDeviceStatusList.Value:type_name -> NetworkManagerDeviceStatus
  386. 5, // 1: NetworkManager.DeviceStatus:input_type -> Empty
  387. 2, // 2: NetworkManager.EthernetSetStaticIP:input_type -> Ethernet
  388. 4, // 3: NetworkManager.EthernetInfo:input_type -> DeviceInterfaceName
  389. 3, // 4: NetworkManager.CreateHotspot:input_type -> Hotspot
  390. 3, // 5: NetworkManager.ChangeHotspot:input_type -> Hotspot
  391. 5, // 6: NetworkManager.OpenHotspot:input_type -> Empty
  392. 5, // 7: NetworkManager.HotspotInfo:input_type -> Empty
  393. 1, // 8: NetworkManager.DeviceStatus:output_type -> NetworkManagerDeviceStatusList
  394. 5, // 9: NetworkManager.EthernetSetStaticIP:output_type -> Empty
  395. 2, // 10: NetworkManager.EthernetInfo:output_type -> Ethernet
  396. 5, // 11: NetworkManager.CreateHotspot:output_type -> Empty
  397. 5, // 12: NetworkManager.ChangeHotspot:output_type -> Empty
  398. 5, // 13: NetworkManager.OpenHotspot:output_type -> Empty
  399. 3, // 14: NetworkManager.HotspotInfo:output_type -> Hotspot
  400. 8, // [8:15] is the sub-list for method output_type
  401. 1, // [1:8] is the sub-list for method input_type
  402. 1, // [1:1] is the sub-list for extension type_name
  403. 1, // [1:1] is the sub-list for extension extendee
  404. 0, // [0:1] is the sub-list for field type_name
  405. }
  406. func init() { file_gRPC_Model_NetworkManager_proto_init() }
  407. func file_gRPC_Model_NetworkManager_proto_init() {
  408. if File_gRPC_Model_NetworkManager_proto != nil {
  409. return
  410. }
  411. file_gRPC_Model_general_proto_init()
  412. file_gRPC_Model_NetworkManager_proto_msgTypes[2].OneofWrappers = []any{}
  413. type x struct{}
  414. out := protoimpl.TypeBuilder{
  415. File: protoimpl.DescBuilder{
  416. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  417. RawDescriptor: file_gRPC_Model_NetworkManager_proto_rawDesc,
  418. NumEnums: 0,
  419. NumMessages: 5,
  420. NumExtensions: 0,
  421. NumServices: 1,
  422. },
  423. GoTypes: file_gRPC_Model_NetworkManager_proto_goTypes,
  424. DependencyIndexes: file_gRPC_Model_NetworkManager_proto_depIdxs,
  425. MessageInfos: file_gRPC_Model_NetworkManager_proto_msgTypes,
  426. }.Build()
  427. File_gRPC_Model_NetworkManager_proto = out.File
  428. file_gRPC_Model_NetworkManager_proto_rawDesc = nil
  429. file_gRPC_Model_NetworkManager_proto_goTypes = nil
  430. file_gRPC_Model_NetworkManager_proto_depIdxs = nil
  431. }