websocket.pb.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: websocket.proto
  6. package websocket
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. emptypb "google.golang.org/protobuf/types/known/emptypb"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type SendMsgRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
  25. Method string `protobuf:"bytes,2,opt,name=method,proto3" json:"method"`
  26. Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data"`
  27. Code int32 `protobuf:"varint,4,opt,name=code,proto3" json:"code"`
  28. Message string `protobuf:"bytes,5,opt,name=message,proto3" json:"message"`
  29. WebsocketTag string `protobuf:"bytes,6,opt,name=websocketTag,proto3" json:"websocketTag"`
  30. }
  31. func (x *SendMsgRequest) Reset() {
  32. *x = SendMsgRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_websocket_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *SendMsgRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*SendMsgRequest) ProtoMessage() {}
  43. func (x *SendMsgRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_websocket_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use SendMsgRequest.ProtoReflect.Descriptor instead.
  55. func (*SendMsgRequest) Descriptor() ([]byte, []int) {
  56. return file_websocket_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *SendMsgRequest) GetId() string {
  59. if x != nil {
  60. return x.Id
  61. }
  62. return ""
  63. }
  64. func (x *SendMsgRequest) GetMethod() string {
  65. if x != nil {
  66. return x.Method
  67. }
  68. return ""
  69. }
  70. func (x *SendMsgRequest) GetData() []byte {
  71. if x != nil {
  72. return x.Data
  73. }
  74. return nil
  75. }
  76. func (x *SendMsgRequest) GetCode() int32 {
  77. if x != nil {
  78. return x.Code
  79. }
  80. return 0
  81. }
  82. func (x *SendMsgRequest) GetMessage() string {
  83. if x != nil {
  84. return x.Message
  85. }
  86. return ""
  87. }
  88. func (x *SendMsgRequest) GetWebsocketTag() string {
  89. if x != nil {
  90. return x.WebsocketTag
  91. }
  92. return ""
  93. }
  94. type SendMsgReply struct {
  95. state protoimpl.MessageState
  96. sizeCache protoimpl.SizeCache
  97. unknownFields protoimpl.UnknownFields
  98. }
  99. func (x *SendMsgReply) Reset() {
  100. *x = SendMsgReply{}
  101. if protoimpl.UnsafeEnabled {
  102. mi := &file_websocket_proto_msgTypes[1]
  103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  104. ms.StoreMessageInfo(mi)
  105. }
  106. }
  107. func (x *SendMsgReply) String() string {
  108. return protoimpl.X.MessageStringOf(x)
  109. }
  110. func (*SendMsgReply) ProtoMessage() {}
  111. func (x *SendMsgReply) ProtoReflect() protoreflect.Message {
  112. mi := &file_websocket_proto_msgTypes[1]
  113. if protoimpl.UnsafeEnabled && x != nil {
  114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  115. if ms.LoadMessageInfo() == nil {
  116. ms.StoreMessageInfo(mi)
  117. }
  118. return ms
  119. }
  120. return mi.MessageOf(x)
  121. }
  122. // Deprecated: Use SendMsgReply.ProtoReflect.Descriptor instead.
  123. func (*SendMsgReply) Descriptor() ([]byte, []int) {
  124. return file_websocket_proto_rawDescGZIP(), []int{1}
  125. }
  126. type FindOnlinePersonReply struct {
  127. state protoimpl.MessageState
  128. sizeCache protoimpl.SizeCache
  129. unknownFields protoimpl.UnknownFields
  130. }
  131. func (x *FindOnlinePersonReply) Reset() {
  132. *x = FindOnlinePersonReply{}
  133. if protoimpl.UnsafeEnabled {
  134. mi := &file_websocket_proto_msgTypes[2]
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. ms.StoreMessageInfo(mi)
  137. }
  138. }
  139. func (x *FindOnlinePersonReply) String() string {
  140. return protoimpl.X.MessageStringOf(x)
  141. }
  142. func (*FindOnlinePersonReply) ProtoMessage() {}
  143. func (x *FindOnlinePersonReply) ProtoReflect() protoreflect.Message {
  144. mi := &file_websocket_proto_msgTypes[2]
  145. if protoimpl.UnsafeEnabled && x != nil {
  146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  147. if ms.LoadMessageInfo() == nil {
  148. ms.StoreMessageInfo(mi)
  149. }
  150. return ms
  151. }
  152. return mi.MessageOf(x)
  153. }
  154. // Deprecated: Use FindOnlinePersonReply.ProtoReflect.Descriptor instead.
  155. func (*FindOnlinePersonReply) Descriptor() ([]byte, []int) {
  156. return file_websocket_proto_rawDescGZIP(), []int{2}
  157. }
  158. type TransmitMessageRequest struct {
  159. state protoimpl.MessageState
  160. sizeCache protoimpl.SizeCache
  161. unknownFields protoimpl.UnknownFields
  162. }
  163. func (x *TransmitMessageRequest) Reset() {
  164. *x = TransmitMessageRequest{}
  165. if protoimpl.UnsafeEnabled {
  166. mi := &file_websocket_proto_msgTypes[3]
  167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  168. ms.StoreMessageInfo(mi)
  169. }
  170. }
  171. func (x *TransmitMessageRequest) String() string {
  172. return protoimpl.X.MessageStringOf(x)
  173. }
  174. func (*TransmitMessageRequest) ProtoMessage() {}
  175. func (x *TransmitMessageRequest) ProtoReflect() protoreflect.Message {
  176. mi := &file_websocket_proto_msgTypes[3]
  177. if protoimpl.UnsafeEnabled && x != nil {
  178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  179. if ms.LoadMessageInfo() == nil {
  180. ms.StoreMessageInfo(mi)
  181. }
  182. return ms
  183. }
  184. return mi.MessageOf(x)
  185. }
  186. // Deprecated: Use TransmitMessageRequest.ProtoReflect.Descriptor instead.
  187. func (*TransmitMessageRequest) Descriptor() ([]byte, []int) {
  188. return file_websocket_proto_rawDescGZIP(), []int{3}
  189. }
  190. type TransmitMessageReply struct {
  191. state protoimpl.MessageState
  192. sizeCache protoimpl.SizeCache
  193. unknownFields protoimpl.UnknownFields
  194. }
  195. func (x *TransmitMessageReply) Reset() {
  196. *x = TransmitMessageReply{}
  197. if protoimpl.UnsafeEnabled {
  198. mi := &file_websocket_proto_msgTypes[4]
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. ms.StoreMessageInfo(mi)
  201. }
  202. }
  203. func (x *TransmitMessageReply) String() string {
  204. return protoimpl.X.MessageStringOf(x)
  205. }
  206. func (*TransmitMessageReply) ProtoMessage() {}
  207. func (x *TransmitMessageReply) ProtoReflect() protoreflect.Message {
  208. mi := &file_websocket_proto_msgTypes[4]
  209. if protoimpl.UnsafeEnabled && x != nil {
  210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  211. if ms.LoadMessageInfo() == nil {
  212. ms.StoreMessageInfo(mi)
  213. }
  214. return ms
  215. }
  216. return mi.MessageOf(x)
  217. }
  218. // Deprecated: Use TransmitMessageReply.ProtoReflect.Descriptor instead.
  219. func (*TransmitMessageReply) Descriptor() ([]byte, []int) {
  220. return file_websocket_proto_rawDescGZIP(), []int{4}
  221. }
  222. var File_websocket_proto protoreflect.FileDescriptor
  223. var file_websocket_proto_rawDesc = []byte{
  224. 0x0a, 0x0f, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  225. 0x6f, 0x12, 0x0d, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  226. 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  227. 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x9e, 0x01,
  228. 0x0a, 0x0e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  229. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  230. 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  231. 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  232. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04,
  233. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  234. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  235. 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65,
  236. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  237. 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x0e,
  238. 0x0a, 0x0c, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x17,
  239. 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73,
  240. 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x18, 0x0a, 0x16, 0x54, 0x72, 0x61, 0x6e, 0x73,
  241. 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  242. 0x74, 0x22, 0x16, 0x0a, 0x14, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73,
  243. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x85, 0x02, 0x0a, 0x09, 0x57, 0x65,
  244. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x5d, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x6e, 0x73,
  245. 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69,
  246. 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73,
  247. 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  248. 0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  249. 0x74, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  250. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x50, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e,
  251. 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  252. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  253. 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  254. 0x65, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72,
  255. 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x47, 0x0a, 0x07, 0x53, 0x65, 0x6e, 0x64,
  256. 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63,
  257. 0x6b, 0x65, 0x74, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  258. 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  259. 0x65, 0x74, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  260. 0x00, 0x42, 0x4c, 0x0a, 0x0d, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  261. 0x65, 0x74, 0x50, 0x01, 0x5a, 0x39, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e,
  262. 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70,
  263. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x65, 0x62, 0x73,
  264. 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x3b, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x62,
  265. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  266. }
  267. var (
  268. file_websocket_proto_rawDescOnce sync.Once
  269. file_websocket_proto_rawDescData = file_websocket_proto_rawDesc
  270. )
  271. func file_websocket_proto_rawDescGZIP() []byte {
  272. file_websocket_proto_rawDescOnce.Do(func() {
  273. file_websocket_proto_rawDescData = protoimpl.X.CompressGZIP(file_websocket_proto_rawDescData)
  274. })
  275. return file_websocket_proto_rawDescData
  276. }
  277. var file_websocket_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
  278. var file_websocket_proto_goTypes = []interface{}{
  279. (*SendMsgRequest)(nil), // 0: api.websocket.SendMsgRequest
  280. (*SendMsgReply)(nil), // 1: api.websocket.SendMsgReply
  281. (*FindOnlinePersonReply)(nil), // 2: api.websocket.FindOnlinePersonReply
  282. (*TransmitMessageRequest)(nil), // 3: api.websocket.TransmitMessageRequest
  283. (*TransmitMessageReply)(nil), // 4: api.websocket.TransmitMessageReply
  284. (*emptypb.Empty)(nil), // 5: google.protobuf.Empty
  285. }
  286. var file_websocket_proto_depIdxs = []int32{
  287. 3, // 0: api.websocket.Websocket.TransmitMessage:input_type -> api.websocket.TransmitMessageRequest
  288. 5, // 1: api.websocket.Websocket.FindOnlinePerson:input_type -> google.protobuf.Empty
  289. 0, // 2: api.websocket.Websocket.SendMsg:input_type -> api.websocket.SendMsgRequest
  290. 4, // 3: api.websocket.Websocket.TransmitMessage:output_type -> api.websocket.TransmitMessageReply
  291. 2, // 4: api.websocket.Websocket.FindOnlinePerson:output_type -> api.websocket.FindOnlinePersonReply
  292. 1, // 5: api.websocket.Websocket.SendMsg:output_type -> api.websocket.SendMsgReply
  293. 3, // [3:6] is the sub-list for method output_type
  294. 0, // [0:3] is the sub-list for method input_type
  295. 0, // [0:0] is the sub-list for extension type_name
  296. 0, // [0:0] is the sub-list for extension extendee
  297. 0, // [0:0] is the sub-list for field type_name
  298. }
  299. func init() { file_websocket_proto_init() }
  300. func file_websocket_proto_init() {
  301. if File_websocket_proto != nil {
  302. return
  303. }
  304. if !protoimpl.UnsafeEnabled {
  305. file_websocket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  306. switch v := v.(*SendMsgRequest); i {
  307. case 0:
  308. return &v.state
  309. case 1:
  310. return &v.sizeCache
  311. case 2:
  312. return &v.unknownFields
  313. default:
  314. return nil
  315. }
  316. }
  317. file_websocket_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  318. switch v := v.(*SendMsgReply); i {
  319. case 0:
  320. return &v.state
  321. case 1:
  322. return &v.sizeCache
  323. case 2:
  324. return &v.unknownFields
  325. default:
  326. return nil
  327. }
  328. }
  329. file_websocket_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  330. switch v := v.(*FindOnlinePersonReply); i {
  331. case 0:
  332. return &v.state
  333. case 1:
  334. return &v.sizeCache
  335. case 2:
  336. return &v.unknownFields
  337. default:
  338. return nil
  339. }
  340. }
  341. file_websocket_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  342. switch v := v.(*TransmitMessageRequest); i {
  343. case 0:
  344. return &v.state
  345. case 1:
  346. return &v.sizeCache
  347. case 2:
  348. return &v.unknownFields
  349. default:
  350. return nil
  351. }
  352. }
  353. file_websocket_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  354. switch v := v.(*TransmitMessageReply); i {
  355. case 0:
  356. return &v.state
  357. case 1:
  358. return &v.sizeCache
  359. case 2:
  360. return &v.unknownFields
  361. default:
  362. return nil
  363. }
  364. }
  365. }
  366. type x struct{}
  367. out := protoimpl.TypeBuilder{
  368. File: protoimpl.DescBuilder{
  369. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  370. RawDescriptor: file_websocket_proto_rawDesc,
  371. NumEnums: 0,
  372. NumMessages: 5,
  373. NumExtensions: 0,
  374. NumServices: 1,
  375. },
  376. GoTypes: file_websocket_proto_goTypes,
  377. DependencyIndexes: file_websocket_proto_depIdxs,
  378. MessageInfos: file_websocket_proto_msgTypes,
  379. }.Build()
  380. File_websocket_proto = out.File
  381. file_websocket_proto_rawDesc = nil
  382. file_websocket_proto_goTypes = nil
  383. file_websocket_proto_depIdxs = nil
  384. }