client.pb.go 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.19.4
  5. // source: protos/client.proto
  6. package client
  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 RequestData struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Tile *BPoint `protobuf:"bytes,1,opt,name=tile,proto3" json:"tile,omitempty"`
  24. From uint64 `protobuf:"varint,2,opt,name=from,proto3" json:"from,omitempty"`
  25. }
  26. func (x *RequestData) Reset() {
  27. *x = RequestData{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_protos_client_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *RequestData) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*RequestData) ProtoMessage() {}
  38. func (x *RequestData) ProtoReflect() protoreflect.Message {
  39. mi := &file_protos_client_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use RequestData.ProtoReflect.Descriptor instead.
  50. func (*RequestData) Descriptor() ([]byte, []int) {
  51. return file_protos_client_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *RequestData) GetTile() *BPoint {
  54. if x != nil {
  55. return x.Tile
  56. }
  57. return nil
  58. }
  59. func (x *RequestData) GetFrom() uint64 {
  60. if x != nil {
  61. return x.From
  62. }
  63. return 0
  64. }
  65. type WebRTCRequest struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. // Types that are assignable to WebRTCRequestOneOf:
  70. // *WebRTCRequest_RequestData
  71. WebRTCRequestOneOf isWebRTCRequest_WebRTCRequestOneOf `protobuf_oneof:"WebRTCRequestOneOf"`
  72. }
  73. func (x *WebRTCRequest) Reset() {
  74. *x = WebRTCRequest{}
  75. if protoimpl.UnsafeEnabled {
  76. mi := &file_protos_client_proto_msgTypes[1]
  77. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  78. ms.StoreMessageInfo(mi)
  79. }
  80. }
  81. func (x *WebRTCRequest) String() string {
  82. return protoimpl.X.MessageStringOf(x)
  83. }
  84. func (*WebRTCRequest) ProtoMessage() {}
  85. func (x *WebRTCRequest) ProtoReflect() protoreflect.Message {
  86. mi := &file_protos_client_proto_msgTypes[1]
  87. if protoimpl.UnsafeEnabled && x != nil {
  88. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  89. if ms.LoadMessageInfo() == nil {
  90. ms.StoreMessageInfo(mi)
  91. }
  92. return ms
  93. }
  94. return mi.MessageOf(x)
  95. }
  96. // Deprecated: Use WebRTCRequest.ProtoReflect.Descriptor instead.
  97. func (*WebRTCRequest) Descriptor() ([]byte, []int) {
  98. return file_protos_client_proto_rawDescGZIP(), []int{1}
  99. }
  100. func (m *WebRTCRequest) GetWebRTCRequestOneOf() isWebRTCRequest_WebRTCRequestOneOf {
  101. if m != nil {
  102. return m.WebRTCRequestOneOf
  103. }
  104. return nil
  105. }
  106. func (x *WebRTCRequest) GetRequestData() *RequestData {
  107. if x, ok := x.GetWebRTCRequestOneOf().(*WebRTCRequest_RequestData); ok {
  108. return x.RequestData
  109. }
  110. return nil
  111. }
  112. type isWebRTCRequest_WebRTCRequestOneOf interface {
  113. isWebRTCRequest_WebRTCRequestOneOf()
  114. }
  115. type WebRTCRequest_RequestData struct {
  116. RequestData *RequestData `protobuf:"bytes,1,opt,name=requestData,proto3,oneof"`
  117. }
  118. func (*WebRTCRequest_RequestData) isWebRTCRequest_WebRTCRequestOneOf() {}
  119. type WebRTCReply struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. // Types that are assignable to WebRTCReplyOneOf:
  124. // *WebRTCReply_RequestData
  125. WebRTCReplyOneOf isWebRTCReply_WebRTCReplyOneOf `protobuf_oneof:"WebRTCReplyOneOf"`
  126. }
  127. func (x *WebRTCReply) Reset() {
  128. *x = WebRTCReply{}
  129. if protoimpl.UnsafeEnabled {
  130. mi := &file_protos_client_proto_msgTypes[2]
  131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  132. ms.StoreMessageInfo(mi)
  133. }
  134. }
  135. func (x *WebRTCReply) String() string {
  136. return protoimpl.X.MessageStringOf(x)
  137. }
  138. func (*WebRTCReply) ProtoMessage() {}
  139. func (x *WebRTCReply) ProtoReflect() protoreflect.Message {
  140. mi := &file_protos_client_proto_msgTypes[2]
  141. if protoimpl.UnsafeEnabled && x != nil {
  142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  143. if ms.LoadMessageInfo() == nil {
  144. ms.StoreMessageInfo(mi)
  145. }
  146. return ms
  147. }
  148. return mi.MessageOf(x)
  149. }
  150. // Deprecated: Use WebRTCReply.ProtoReflect.Descriptor instead.
  151. func (*WebRTCReply) Descriptor() ([]byte, []int) {
  152. return file_protos_client_proto_rawDescGZIP(), []int{2}
  153. }
  154. func (m *WebRTCReply) GetWebRTCReplyOneOf() isWebRTCReply_WebRTCReplyOneOf {
  155. if m != nil {
  156. return m.WebRTCReplyOneOf
  157. }
  158. return nil
  159. }
  160. func (x *WebRTCReply) GetRequestData() *RequestData {
  161. if x, ok := x.GetWebRTCReplyOneOf().(*WebRTCReply_RequestData); ok {
  162. return x.RequestData
  163. }
  164. return nil
  165. }
  166. type isWebRTCReply_WebRTCReplyOneOf interface {
  167. isWebRTCReply_WebRTCReplyOneOf()
  168. }
  169. type WebRTCReply_RequestData struct {
  170. RequestData *RequestData `protobuf:"bytes,1,opt,name=requestData,proto3,oneof"`
  171. }
  172. func (*WebRTCReply_RequestData) isWebRTCReply_WebRTCReplyOneOf() {}
  173. type WebSocketRequest struct {
  174. state protoimpl.MessageState
  175. sizeCache protoimpl.SizeCache
  176. unknownFields protoimpl.UnknownFields
  177. // Types that are assignable to WebSocketRequestOneOf:
  178. // *WebSocketRequest_RequestData
  179. WebSocketRequestOneOf isWebSocketRequest_WebSocketRequestOneOf `protobuf_oneof:"WebSocketRequestOneOf"`
  180. }
  181. func (x *WebSocketRequest) Reset() {
  182. *x = WebSocketRequest{}
  183. if protoimpl.UnsafeEnabled {
  184. mi := &file_protos_client_proto_msgTypes[3]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. }
  189. func (x *WebSocketRequest) String() string {
  190. return protoimpl.X.MessageStringOf(x)
  191. }
  192. func (*WebSocketRequest) ProtoMessage() {}
  193. func (x *WebSocketRequest) ProtoReflect() protoreflect.Message {
  194. mi := &file_protos_client_proto_msgTypes[3]
  195. if protoimpl.UnsafeEnabled && x != nil {
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. if ms.LoadMessageInfo() == nil {
  198. ms.StoreMessageInfo(mi)
  199. }
  200. return ms
  201. }
  202. return mi.MessageOf(x)
  203. }
  204. // Deprecated: Use WebSocketRequest.ProtoReflect.Descriptor instead.
  205. func (*WebSocketRequest) Descriptor() ([]byte, []int) {
  206. return file_protos_client_proto_rawDescGZIP(), []int{3}
  207. }
  208. func (m *WebSocketRequest) GetWebSocketRequestOneOf() isWebSocketRequest_WebSocketRequestOneOf {
  209. if m != nil {
  210. return m.WebSocketRequestOneOf
  211. }
  212. return nil
  213. }
  214. func (x *WebSocketRequest) GetRequestData() *RequestData {
  215. if x, ok := x.GetWebSocketRequestOneOf().(*WebSocketRequest_RequestData); ok {
  216. return x.RequestData
  217. }
  218. return nil
  219. }
  220. type isWebSocketRequest_WebSocketRequestOneOf interface {
  221. isWebSocketRequest_WebSocketRequestOneOf()
  222. }
  223. type WebSocketRequest_RequestData struct {
  224. RequestData *RequestData `protobuf:"bytes,1,opt,name=requestData,proto3,oneof"`
  225. }
  226. func (*WebSocketRequest_RequestData) isWebSocketRequest_WebSocketRequestOneOf() {}
  227. type WebSocketReply struct {
  228. state protoimpl.MessageState
  229. sizeCache protoimpl.SizeCache
  230. unknownFields protoimpl.UnknownFields
  231. // Types that are assignable to WebSocketReplyOneOf:
  232. // *WebSocketReply_RequestData
  233. WebSocketReplyOneOf isWebSocketReply_WebSocketReplyOneOf `protobuf_oneof:"WebSocketReplyOneOf"`
  234. }
  235. func (x *WebSocketReply) Reset() {
  236. *x = WebSocketReply{}
  237. if protoimpl.UnsafeEnabled {
  238. mi := &file_protos_client_proto_msgTypes[4]
  239. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  240. ms.StoreMessageInfo(mi)
  241. }
  242. }
  243. func (x *WebSocketReply) String() string {
  244. return protoimpl.X.MessageStringOf(x)
  245. }
  246. func (*WebSocketReply) ProtoMessage() {}
  247. func (x *WebSocketReply) ProtoReflect() protoreflect.Message {
  248. mi := &file_protos_client_proto_msgTypes[4]
  249. if protoimpl.UnsafeEnabled && x != nil {
  250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  251. if ms.LoadMessageInfo() == nil {
  252. ms.StoreMessageInfo(mi)
  253. }
  254. return ms
  255. }
  256. return mi.MessageOf(x)
  257. }
  258. // Deprecated: Use WebSocketReply.ProtoReflect.Descriptor instead.
  259. func (*WebSocketReply) Descriptor() ([]byte, []int) {
  260. return file_protos_client_proto_rawDescGZIP(), []int{4}
  261. }
  262. func (m *WebSocketReply) GetWebSocketReplyOneOf() isWebSocketReply_WebSocketReplyOneOf {
  263. if m != nil {
  264. return m.WebSocketReplyOneOf
  265. }
  266. return nil
  267. }
  268. func (x *WebSocketReply) GetRequestData() *RequestData {
  269. if x, ok := x.GetWebSocketReplyOneOf().(*WebSocketReply_RequestData); ok {
  270. return x.RequestData
  271. }
  272. return nil
  273. }
  274. type isWebSocketReply_WebSocketReplyOneOf interface {
  275. isWebSocketReply_WebSocketReplyOneOf()
  276. }
  277. type WebSocketReply_RequestData struct {
  278. RequestData *RequestData `protobuf:"bytes,1,opt,name=requestData,proto3,oneof"`
  279. }
  280. func (*WebSocketReply_RequestData) isWebSocketReply_WebSocketReplyOneOf() {}
  281. type MonitorPoint struct {
  282. state protoimpl.MessageState
  283. sizeCache protoimpl.SizeCache
  284. unknownFields protoimpl.UnknownFields
  285. Point *BPoint `protobuf:"bytes,1,opt,name=point,proto3" json:"point,omitempty"`
  286. Color *BColor `protobuf:"bytes,2,opt,name=color,proto3" json:"color,omitempty"`
  287. }
  288. func (x *MonitorPoint) Reset() {
  289. *x = MonitorPoint{}
  290. if protoimpl.UnsafeEnabled {
  291. mi := &file_protos_client_proto_msgTypes[5]
  292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  293. ms.StoreMessageInfo(mi)
  294. }
  295. }
  296. func (x *MonitorPoint) String() string {
  297. return protoimpl.X.MessageStringOf(x)
  298. }
  299. func (*MonitorPoint) ProtoMessage() {}
  300. func (x *MonitorPoint) ProtoReflect() protoreflect.Message {
  301. mi := &file_protos_client_proto_msgTypes[5]
  302. if protoimpl.UnsafeEnabled && x != nil {
  303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  304. if ms.LoadMessageInfo() == nil {
  305. ms.StoreMessageInfo(mi)
  306. }
  307. return ms
  308. }
  309. return mi.MessageOf(x)
  310. }
  311. // Deprecated: Use MonitorPoint.ProtoReflect.Descriptor instead.
  312. func (*MonitorPoint) Descriptor() ([]byte, []int) {
  313. return file_protos_client_proto_rawDescGZIP(), []int{5}
  314. }
  315. func (x *MonitorPoint) GetPoint() *BPoint {
  316. if x != nil {
  317. return x.Point
  318. }
  319. return nil
  320. }
  321. func (x *MonitorPoint) GetColor() *BColor {
  322. if x != nil {
  323. return x.Color
  324. }
  325. return nil
  326. }
  327. type MonitorReply struct {
  328. state protoimpl.MessageState
  329. sizeCache protoimpl.SizeCache
  330. unknownFields protoimpl.UnknownFields
  331. Points []*MonitorPoint `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
  332. Tile *BPoint `protobuf:"bytes,2,opt,name=tile,proto3" json:"tile,omitempty"`
  333. }
  334. func (x *MonitorReply) Reset() {
  335. *x = MonitorReply{}
  336. if protoimpl.UnsafeEnabled {
  337. mi := &file_protos_client_proto_msgTypes[6]
  338. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  339. ms.StoreMessageInfo(mi)
  340. }
  341. }
  342. func (x *MonitorReply) String() string {
  343. return protoimpl.X.MessageStringOf(x)
  344. }
  345. func (*MonitorReply) ProtoMessage() {}
  346. func (x *MonitorReply) ProtoReflect() protoreflect.Message {
  347. mi := &file_protos_client_proto_msgTypes[6]
  348. if protoimpl.UnsafeEnabled && x != nil {
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. if ms.LoadMessageInfo() == nil {
  351. ms.StoreMessageInfo(mi)
  352. }
  353. return ms
  354. }
  355. return mi.MessageOf(x)
  356. }
  357. // Deprecated: Use MonitorReply.ProtoReflect.Descriptor instead.
  358. func (*MonitorReply) Descriptor() ([]byte, []int) {
  359. return file_protos_client_proto_rawDescGZIP(), []int{6}
  360. }
  361. func (x *MonitorReply) GetPoints() []*MonitorPoint {
  362. if x != nil {
  363. return x.Points
  364. }
  365. return nil
  366. }
  367. func (x *MonitorReply) GetTile() *BPoint {
  368. if x != nil {
  369. return x.Tile
  370. }
  371. return nil
  372. }
  373. type MonitorRequest struct {
  374. state protoimpl.MessageState
  375. sizeCache protoimpl.SizeCache
  376. unknownFields protoimpl.UnknownFields
  377. Last int64 `protobuf:"varint,1,opt,name=last,proto3" json:"last,omitempty"`
  378. Tile *BPoint `protobuf:"bytes,2,opt,name=tile,proto3" json:"tile,omitempty"`
  379. }
  380. func (x *MonitorRequest) Reset() {
  381. *x = MonitorRequest{}
  382. if protoimpl.UnsafeEnabled {
  383. mi := &file_protos_client_proto_msgTypes[7]
  384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  385. ms.StoreMessageInfo(mi)
  386. }
  387. }
  388. func (x *MonitorRequest) String() string {
  389. return protoimpl.X.MessageStringOf(x)
  390. }
  391. func (*MonitorRequest) ProtoMessage() {}
  392. func (x *MonitorRequest) ProtoReflect() protoreflect.Message {
  393. mi := &file_protos_client_proto_msgTypes[7]
  394. if protoimpl.UnsafeEnabled && x != nil {
  395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  396. if ms.LoadMessageInfo() == nil {
  397. ms.StoreMessageInfo(mi)
  398. }
  399. return ms
  400. }
  401. return mi.MessageOf(x)
  402. }
  403. // Deprecated: Use MonitorRequest.ProtoReflect.Descriptor instead.
  404. func (*MonitorRequest) Descriptor() ([]byte, []int) {
  405. return file_protos_client_proto_rawDescGZIP(), []int{7}
  406. }
  407. func (x *MonitorRequest) GetLast() int64 {
  408. if x != nil {
  409. return x.Last
  410. }
  411. return 0
  412. }
  413. func (x *MonitorRequest) GetTile() *BPoint {
  414. if x != nil {
  415. return x.Tile
  416. }
  417. return nil
  418. }
  419. type MonitorPointList struct {
  420. state protoimpl.MessageState
  421. sizeCache protoimpl.SizeCache
  422. unknownFields protoimpl.UnknownFields
  423. Points []*MonitorPoint `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
  424. }
  425. func (x *MonitorPointList) Reset() {
  426. *x = MonitorPointList{}
  427. if protoimpl.UnsafeEnabled {
  428. mi := &file_protos_client_proto_msgTypes[8]
  429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  430. ms.StoreMessageInfo(mi)
  431. }
  432. }
  433. func (x *MonitorPointList) String() string {
  434. return protoimpl.X.MessageStringOf(x)
  435. }
  436. func (*MonitorPointList) ProtoMessage() {}
  437. func (x *MonitorPointList) ProtoReflect() protoreflect.Message {
  438. mi := &file_protos_client_proto_msgTypes[8]
  439. if protoimpl.UnsafeEnabled && x != nil {
  440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  441. if ms.LoadMessageInfo() == nil {
  442. ms.StoreMessageInfo(mi)
  443. }
  444. return ms
  445. }
  446. return mi.MessageOf(x)
  447. }
  448. // Deprecated: Use MonitorPointList.ProtoReflect.Descriptor instead.
  449. func (*MonitorPointList) Descriptor() ([]byte, []int) {
  450. return file_protos_client_proto_rawDescGZIP(), []int{8}
  451. }
  452. func (x *MonitorPointList) GetPoints() []*MonitorPoint {
  453. if x != nil {
  454. return x.Points
  455. }
  456. return nil
  457. }
  458. type BPoint struct {
  459. state protoimpl.MessageState
  460. sizeCache protoimpl.SizeCache
  461. unknownFields protoimpl.UnknownFields
  462. X int32 `protobuf:"varint,1,opt,name=x,proto3" json:"x,omitempty"`
  463. Y int32 `protobuf:"varint,2,opt,name=y,proto3" json:"y,omitempty"`
  464. }
  465. func (x *BPoint) Reset() {
  466. *x = BPoint{}
  467. if protoimpl.UnsafeEnabled {
  468. mi := &file_protos_client_proto_msgTypes[9]
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. ms.StoreMessageInfo(mi)
  471. }
  472. }
  473. func (x *BPoint) String() string {
  474. return protoimpl.X.MessageStringOf(x)
  475. }
  476. func (*BPoint) ProtoMessage() {}
  477. func (x *BPoint) ProtoReflect() protoreflect.Message {
  478. mi := &file_protos_client_proto_msgTypes[9]
  479. if protoimpl.UnsafeEnabled && x != nil {
  480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  481. if ms.LoadMessageInfo() == nil {
  482. ms.StoreMessageInfo(mi)
  483. }
  484. return ms
  485. }
  486. return mi.MessageOf(x)
  487. }
  488. // Deprecated: Use BPoint.ProtoReflect.Descriptor instead.
  489. func (*BPoint) Descriptor() ([]byte, []int) {
  490. return file_protos_client_proto_rawDescGZIP(), []int{9}
  491. }
  492. func (x *BPoint) GetX() int32 {
  493. if x != nil {
  494. return x.X
  495. }
  496. return 0
  497. }
  498. func (x *BPoint) GetY() int32 {
  499. if x != nil {
  500. return x.Y
  501. }
  502. return 0
  503. }
  504. type BColor struct {
  505. state protoimpl.MessageState
  506. sizeCache protoimpl.SizeCache
  507. unknownFields protoimpl.UnknownFields
  508. Rgba uint32 `protobuf:"varint,1,opt,name=rgba,proto3" json:"rgba,omitempty"`
  509. }
  510. func (x *BColor) Reset() {
  511. *x = BColor{}
  512. if protoimpl.UnsafeEnabled {
  513. mi := &file_protos_client_proto_msgTypes[10]
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. ms.StoreMessageInfo(mi)
  516. }
  517. }
  518. func (x *BColor) String() string {
  519. return protoimpl.X.MessageStringOf(x)
  520. }
  521. func (*BColor) ProtoMessage() {}
  522. func (x *BColor) ProtoReflect() protoreflect.Message {
  523. mi := &file_protos_client_proto_msgTypes[10]
  524. if protoimpl.UnsafeEnabled && x != nil {
  525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  526. if ms.LoadMessageInfo() == nil {
  527. ms.StoreMessageInfo(mi)
  528. }
  529. return ms
  530. }
  531. return mi.MessageOf(x)
  532. }
  533. // Deprecated: Use BColor.ProtoReflect.Descriptor instead.
  534. func (*BColor) Descriptor() ([]byte, []int) {
  535. return file_protos_client_proto_rawDescGZIP(), []int{10}
  536. }
  537. func (x *BColor) GetRgba() uint32 {
  538. if x != nil {
  539. return x.Rgba
  540. }
  541. return 0
  542. }
  543. type PaintRequest struct {
  544. state protoimpl.MessageState
  545. sizeCache protoimpl.SizeCache
  546. unknownFields protoimpl.UnknownFields
  547. Point *BPoint `protobuf:"bytes,1,opt,name=point,proto3" json:"point,omitempty"`
  548. Color *BColor `protobuf:"bytes,2,opt,name=color,proto3" json:"color,omitempty"`
  549. }
  550. func (x *PaintRequest) Reset() {
  551. *x = PaintRequest{}
  552. if protoimpl.UnsafeEnabled {
  553. mi := &file_protos_client_proto_msgTypes[11]
  554. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  555. ms.StoreMessageInfo(mi)
  556. }
  557. }
  558. func (x *PaintRequest) String() string {
  559. return protoimpl.X.MessageStringOf(x)
  560. }
  561. func (*PaintRequest) ProtoMessage() {}
  562. func (x *PaintRequest) ProtoReflect() protoreflect.Message {
  563. mi := &file_protos_client_proto_msgTypes[11]
  564. if protoimpl.UnsafeEnabled && x != nil {
  565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  566. if ms.LoadMessageInfo() == nil {
  567. ms.StoreMessageInfo(mi)
  568. }
  569. return ms
  570. }
  571. return mi.MessageOf(x)
  572. }
  573. // Deprecated: Use PaintRequest.ProtoReflect.Descriptor instead.
  574. func (*PaintRequest) Descriptor() ([]byte, []int) {
  575. return file_protos_client_proto_rawDescGZIP(), []int{11}
  576. }
  577. func (x *PaintRequest) GetPoint() *BPoint {
  578. if x != nil {
  579. return x.Point
  580. }
  581. return nil
  582. }
  583. func (x *PaintRequest) GetColor() *BColor {
  584. if x != nil {
  585. return x.Color
  586. }
  587. return nil
  588. }
  589. // The response message containing the greetings
  590. type PaintReply struct {
  591. state protoimpl.MessageState
  592. sizeCache protoimpl.SizeCache
  593. unknownFields protoimpl.UnknownFields
  594. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
  595. }
  596. func (x *PaintReply) Reset() {
  597. *x = PaintReply{}
  598. if protoimpl.UnsafeEnabled {
  599. mi := &file_protos_client_proto_msgTypes[12]
  600. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  601. ms.StoreMessageInfo(mi)
  602. }
  603. }
  604. func (x *PaintReply) String() string {
  605. return protoimpl.X.MessageStringOf(x)
  606. }
  607. func (*PaintReply) ProtoMessage() {}
  608. func (x *PaintReply) ProtoReflect() protoreflect.Message {
  609. mi := &file_protos_client_proto_msgTypes[12]
  610. if protoimpl.UnsafeEnabled && x != nil {
  611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  612. if ms.LoadMessageInfo() == nil {
  613. ms.StoreMessageInfo(mi)
  614. }
  615. return ms
  616. }
  617. return mi.MessageOf(x)
  618. }
  619. // Deprecated: Use PaintReply.ProtoReflect.Descriptor instead.
  620. func (*PaintReply) Descriptor() ([]byte, []int) {
  621. return file_protos_client_proto_rawDescGZIP(), []int{12}
  622. }
  623. func (x *PaintReply) GetMessage() string {
  624. if x != nil {
  625. return x.Message
  626. }
  627. return ""
  628. }
  629. type RTCData struct {
  630. state protoimpl.MessageState
  631. sizeCache protoimpl.SizeCache
  632. unknownFields protoimpl.UnknownFields
  633. Event string `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
  634. Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
  635. }
  636. func (x *RTCData) Reset() {
  637. *x = RTCData{}
  638. if protoimpl.UnsafeEnabled {
  639. mi := &file_protos_client_proto_msgTypes[13]
  640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  641. ms.StoreMessageInfo(mi)
  642. }
  643. }
  644. func (x *RTCData) String() string {
  645. return protoimpl.X.MessageStringOf(x)
  646. }
  647. func (*RTCData) ProtoMessage() {}
  648. func (x *RTCData) ProtoReflect() protoreflect.Message {
  649. mi := &file_protos_client_proto_msgTypes[13]
  650. if protoimpl.UnsafeEnabled && x != nil {
  651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  652. if ms.LoadMessageInfo() == nil {
  653. ms.StoreMessageInfo(mi)
  654. }
  655. return ms
  656. }
  657. return mi.MessageOf(x)
  658. }
  659. // Deprecated: Use RTCData.ProtoReflect.Descriptor instead.
  660. func (*RTCData) Descriptor() ([]byte, []int) {
  661. return file_protos_client_proto_rawDescGZIP(), []int{13}
  662. }
  663. func (x *RTCData) GetEvent() string {
  664. if x != nil {
  665. return x.Event
  666. }
  667. return ""
  668. }
  669. func (x *RTCData) GetData() string {
  670. if x != nil {
  671. return x.Data
  672. }
  673. return ""
  674. }
  675. var File_protos_client_proto protoreflect.FileDescriptor
  676. var file_protos_client_proto_rawDesc = []byte{
  677. 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e,
  678. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3e, 0x0a, 0x0b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  679. 0x44, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x04, 0x74, 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01,
  680. 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x42, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x04, 0x74, 0x69, 0x6c,
  681. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  682. 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x22, 0x57, 0x0a, 0x0d, 0x57, 0x65, 0x62, 0x52, 0x54, 0x43, 0x52,
  683. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
  684. 0x74, 0x44, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52, 0x65,
  685. 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x0b, 0x72, 0x65, 0x71,
  686. 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x14, 0x0a, 0x12, 0x57, 0x65, 0x62, 0x52,
  687. 0x54, 0x43, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4f, 0x6e, 0x65, 0x4f, 0x66, 0x22, 0x53,
  688. 0x0a, 0x0b, 0x57, 0x65, 0x62, 0x52, 0x54, 0x43, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a,
  689. 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01,
  690. 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61,
  691. 0x48, 0x00, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42,
  692. 0x12, 0x0a, 0x10, 0x57, 0x65, 0x62, 0x52, 0x54, 0x43, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4f, 0x6e,
  693. 0x65, 0x4f, 0x66, 0x22, 0x5d, 0x0a, 0x10, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  694. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65,
  695. 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52,
  696. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x0b, 0x72, 0x65,
  697. 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x17, 0x0a, 0x15, 0x57, 0x65, 0x62,
  698. 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4f, 0x6e, 0x65,
  699. 0x4f, 0x66, 0x22, 0x59, 0x0a, 0x0e, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52,
  700. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44,
  701. 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52, 0x65, 0x71, 0x75,
  702. 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65,
  703. 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x15, 0x0a, 0x13, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
  704. 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4f, 0x6e, 0x65, 0x4f, 0x66, 0x22, 0x4c, 0x0a,
  705. 0x0c, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x1d, 0x0a,
  706. 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x42,
  707. 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x05,
  708. 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x42, 0x43,
  709. 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x52, 0x0a, 0x0c, 0x4d,
  710. 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x25, 0x0a, 0x06, 0x70,
  711. 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x4d, 0x6f,
  712. 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e,
  713. 0x74, 0x73, 0x12, 0x1b, 0x0a, 0x04, 0x74, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  714. 0x32, 0x07, 0x2e, 0x42, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x04, 0x74, 0x69, 0x6c, 0x65, 0x22,
  715. 0x41, 0x0a, 0x0e, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  716. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  717. 0x04, 0x6c, 0x61, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x04, 0x74, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20,
  718. 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x42, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x04, 0x74, 0x69,
  719. 0x6c, 0x65, 0x22, 0x39, 0x0a, 0x10, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x50, 0x6f, 0x69,
  720. 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
  721. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
  722. 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x24, 0x0a,
  723. 0x06, 0x42, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01,
  724. 0x28, 0x05, 0x52, 0x01, 0x78, 0x12, 0x0c, 0x0a, 0x01, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  725. 0x52, 0x01, 0x79, 0x22, 0x1c, 0x0a, 0x06, 0x42, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x12, 0x0a,
  726. 0x04, 0x72, 0x67, 0x62, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x72, 0x67, 0x62,
  727. 0x61, 0x22, 0x4c, 0x0a, 0x0c, 0x50, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  728. 0x74, 0x12, 0x1d, 0x0a, 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  729. 0x32, 0x07, 0x2e, 0x42, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74,
  730. 0x12, 0x1d, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  731. 0x07, 0x2e, 0x42, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22,
  732. 0x26, 0x0a, 0x0a, 0x50, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a,
  733. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  734. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x33, 0x0a, 0x07, 0x52, 0x54, 0x43, 0x44, 0x61,
  735. 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  736. 0x09, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  737. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x11, 0x5a, 0x0f,
  738. 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x62,
  739. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  740. }
  741. var (
  742. file_protos_client_proto_rawDescOnce sync.Once
  743. file_protos_client_proto_rawDescData = file_protos_client_proto_rawDesc
  744. )
  745. func file_protos_client_proto_rawDescGZIP() []byte {
  746. file_protos_client_proto_rawDescOnce.Do(func() {
  747. file_protos_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_protos_client_proto_rawDescData)
  748. })
  749. return file_protos_client_proto_rawDescData
  750. }
  751. var file_protos_client_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
  752. var file_protos_client_proto_goTypes = []interface{}{
  753. (*RequestData)(nil), // 0: RequestData
  754. (*WebRTCRequest)(nil), // 1: WebRTCRequest
  755. (*WebRTCReply)(nil), // 2: WebRTCReply
  756. (*WebSocketRequest)(nil), // 3: WebSocketRequest
  757. (*WebSocketReply)(nil), // 4: WebSocketReply
  758. (*MonitorPoint)(nil), // 5: MonitorPoint
  759. (*MonitorReply)(nil), // 6: MonitorReply
  760. (*MonitorRequest)(nil), // 7: MonitorRequest
  761. (*MonitorPointList)(nil), // 8: MonitorPointList
  762. (*BPoint)(nil), // 9: BPoint
  763. (*BColor)(nil), // 10: BColor
  764. (*PaintRequest)(nil), // 11: PaintRequest
  765. (*PaintReply)(nil), // 12: PaintReply
  766. (*RTCData)(nil), // 13: RTCData
  767. }
  768. var file_protos_client_proto_depIdxs = []int32{
  769. 9, // 0: RequestData.tile:type_name -> BPoint
  770. 0, // 1: WebRTCRequest.requestData:type_name -> RequestData
  771. 0, // 2: WebRTCReply.requestData:type_name -> RequestData
  772. 0, // 3: WebSocketRequest.requestData:type_name -> RequestData
  773. 0, // 4: WebSocketReply.requestData:type_name -> RequestData
  774. 9, // 5: MonitorPoint.point:type_name -> BPoint
  775. 10, // 6: MonitorPoint.color:type_name -> BColor
  776. 5, // 7: MonitorReply.points:type_name -> MonitorPoint
  777. 9, // 8: MonitorReply.tile:type_name -> BPoint
  778. 9, // 9: MonitorRequest.tile:type_name -> BPoint
  779. 5, // 10: MonitorPointList.points:type_name -> MonitorPoint
  780. 9, // 11: PaintRequest.point:type_name -> BPoint
  781. 10, // 12: PaintRequest.color:type_name -> BColor
  782. 13, // [13:13] is the sub-list for method output_type
  783. 13, // [13:13] is the sub-list for method input_type
  784. 13, // [13:13] is the sub-list for extension type_name
  785. 13, // [13:13] is the sub-list for extension extendee
  786. 0, // [0:13] is the sub-list for field type_name
  787. }
  788. func init() { file_protos_client_proto_init() }
  789. func file_protos_client_proto_init() {
  790. if File_protos_client_proto != nil {
  791. return
  792. }
  793. if !protoimpl.UnsafeEnabled {
  794. file_protos_client_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  795. switch v := v.(*RequestData); i {
  796. case 0:
  797. return &v.state
  798. case 1:
  799. return &v.sizeCache
  800. case 2:
  801. return &v.unknownFields
  802. default:
  803. return nil
  804. }
  805. }
  806. file_protos_client_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  807. switch v := v.(*WebRTCRequest); i {
  808. case 0:
  809. return &v.state
  810. case 1:
  811. return &v.sizeCache
  812. case 2:
  813. return &v.unknownFields
  814. default:
  815. return nil
  816. }
  817. }
  818. file_protos_client_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  819. switch v := v.(*WebRTCReply); i {
  820. case 0:
  821. return &v.state
  822. case 1:
  823. return &v.sizeCache
  824. case 2:
  825. return &v.unknownFields
  826. default:
  827. return nil
  828. }
  829. }
  830. file_protos_client_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  831. switch v := v.(*WebSocketRequest); i {
  832. case 0:
  833. return &v.state
  834. case 1:
  835. return &v.sizeCache
  836. case 2:
  837. return &v.unknownFields
  838. default:
  839. return nil
  840. }
  841. }
  842. file_protos_client_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  843. switch v := v.(*WebSocketReply); i {
  844. case 0:
  845. return &v.state
  846. case 1:
  847. return &v.sizeCache
  848. case 2:
  849. return &v.unknownFields
  850. default:
  851. return nil
  852. }
  853. }
  854. file_protos_client_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  855. switch v := v.(*MonitorPoint); i {
  856. case 0:
  857. return &v.state
  858. case 1:
  859. return &v.sizeCache
  860. case 2:
  861. return &v.unknownFields
  862. default:
  863. return nil
  864. }
  865. }
  866. file_protos_client_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  867. switch v := v.(*MonitorReply); i {
  868. case 0:
  869. return &v.state
  870. case 1:
  871. return &v.sizeCache
  872. case 2:
  873. return &v.unknownFields
  874. default:
  875. return nil
  876. }
  877. }
  878. file_protos_client_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  879. switch v := v.(*MonitorRequest); i {
  880. case 0:
  881. return &v.state
  882. case 1:
  883. return &v.sizeCache
  884. case 2:
  885. return &v.unknownFields
  886. default:
  887. return nil
  888. }
  889. }
  890. file_protos_client_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  891. switch v := v.(*MonitorPointList); i {
  892. case 0:
  893. return &v.state
  894. case 1:
  895. return &v.sizeCache
  896. case 2:
  897. return &v.unknownFields
  898. default:
  899. return nil
  900. }
  901. }
  902. file_protos_client_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  903. switch v := v.(*BPoint); i {
  904. case 0:
  905. return &v.state
  906. case 1:
  907. return &v.sizeCache
  908. case 2:
  909. return &v.unknownFields
  910. default:
  911. return nil
  912. }
  913. }
  914. file_protos_client_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  915. switch v := v.(*BColor); i {
  916. case 0:
  917. return &v.state
  918. case 1:
  919. return &v.sizeCache
  920. case 2:
  921. return &v.unknownFields
  922. default:
  923. return nil
  924. }
  925. }
  926. file_protos_client_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  927. switch v := v.(*PaintRequest); i {
  928. case 0:
  929. return &v.state
  930. case 1:
  931. return &v.sizeCache
  932. case 2:
  933. return &v.unknownFields
  934. default:
  935. return nil
  936. }
  937. }
  938. file_protos_client_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  939. switch v := v.(*PaintReply); i {
  940. case 0:
  941. return &v.state
  942. case 1:
  943. return &v.sizeCache
  944. case 2:
  945. return &v.unknownFields
  946. default:
  947. return nil
  948. }
  949. }
  950. file_protos_client_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  951. switch v := v.(*RTCData); i {
  952. case 0:
  953. return &v.state
  954. case 1:
  955. return &v.sizeCache
  956. case 2:
  957. return &v.unknownFields
  958. default:
  959. return nil
  960. }
  961. }
  962. }
  963. file_protos_client_proto_msgTypes[1].OneofWrappers = []interface{}{
  964. (*WebRTCRequest_RequestData)(nil),
  965. }
  966. file_protos_client_proto_msgTypes[2].OneofWrappers = []interface{}{
  967. (*WebRTCReply_RequestData)(nil),
  968. }
  969. file_protos_client_proto_msgTypes[3].OneofWrappers = []interface{}{
  970. (*WebSocketRequest_RequestData)(nil),
  971. }
  972. file_protos_client_proto_msgTypes[4].OneofWrappers = []interface{}{
  973. (*WebSocketReply_RequestData)(nil),
  974. }
  975. type x struct{}
  976. out := protoimpl.TypeBuilder{
  977. File: protoimpl.DescBuilder{
  978. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  979. RawDescriptor: file_protos_client_proto_rawDesc,
  980. NumEnums: 0,
  981. NumMessages: 14,
  982. NumExtensions: 0,
  983. NumServices: 0,
  984. },
  985. GoTypes: file_protos_client_proto_goTypes,
  986. DependencyIndexes: file_protos_client_proto_depIdxs,
  987. MessageInfos: file_protos_client_proto_msgTypes,
  988. }.Build()
  989. File_protos_client_proto = out.File
  990. file_protos_client_proto_rawDesc = nil
  991. file_protos_client_proto_goTypes = nil
  992. file_protos_client_proto_depIdxs = nil
  993. }