WAMsgTransport.pb.go 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.10
  4. // protoc v3.21.12
  5. // source: waMsgTransport/WAMsgTransport.proto
  6. package waMsgTransport
  7. import (
  8. reflect "reflect"
  9. sync "sync"
  10. unsafe "unsafe"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. waCommon "go.mau.fi/whatsmeow/proto/waCommon"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type MessageTransport_Protocol_Ancillary_BackupDirective_ActionType int32
  22. const (
  23. MessageTransport_Protocol_Ancillary_BackupDirective_NOOP MessageTransport_Protocol_Ancillary_BackupDirective_ActionType = 0
  24. MessageTransport_Protocol_Ancillary_BackupDirective_UPSERT MessageTransport_Protocol_Ancillary_BackupDirective_ActionType = 1
  25. MessageTransport_Protocol_Ancillary_BackupDirective_DELETE MessageTransport_Protocol_Ancillary_BackupDirective_ActionType = 2
  26. MessageTransport_Protocol_Ancillary_BackupDirective_UPSERT_AND_DELETE MessageTransport_Protocol_Ancillary_BackupDirective_ActionType = 3
  27. )
  28. // Enum value maps for MessageTransport_Protocol_Ancillary_BackupDirective_ActionType.
  29. var (
  30. MessageTransport_Protocol_Ancillary_BackupDirective_ActionType_name = map[int32]string{
  31. 0: "NOOP",
  32. 1: "UPSERT",
  33. 2: "DELETE",
  34. 3: "UPSERT_AND_DELETE",
  35. }
  36. MessageTransport_Protocol_Ancillary_BackupDirective_ActionType_value = map[string]int32{
  37. "NOOP": 0,
  38. "UPSERT": 1,
  39. "DELETE": 2,
  40. "UPSERT_AND_DELETE": 3,
  41. }
  42. )
  43. func (x MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) Enum() *MessageTransport_Protocol_Ancillary_BackupDirective_ActionType {
  44. p := new(MessageTransport_Protocol_Ancillary_BackupDirective_ActionType)
  45. *p = x
  46. return p
  47. }
  48. func (x MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) String() string {
  49. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  50. }
  51. func (MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) Descriptor() protoreflect.EnumDescriptor {
  52. return file_waMsgTransport_WAMsgTransport_proto_enumTypes[0].Descriptor()
  53. }
  54. func (MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) Type() protoreflect.EnumType {
  55. return &file_waMsgTransport_WAMsgTransport_proto_enumTypes[0]
  56. }
  57. func (x MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) Number() protoreflect.EnumNumber {
  58. return protoreflect.EnumNumber(x)
  59. }
  60. // Deprecated: Do not use.
  61. func (x *MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) UnmarshalJSON(b []byte) error {
  62. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  63. if err != nil {
  64. return err
  65. }
  66. *x = MessageTransport_Protocol_Ancillary_BackupDirective_ActionType(num)
  67. return nil
  68. }
  69. // Deprecated: Use MessageTransport_Protocol_Ancillary_BackupDirective_ActionType.Descriptor instead.
  70. func (MessageTransport_Protocol_Ancillary_BackupDirective_ActionType) EnumDescriptor() ([]byte, []int) {
  71. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0, 0, 0}
  72. }
  73. type MessageTransport struct {
  74. state protoimpl.MessageState `protogen:"open.v1"`
  75. Payload *MessageTransport_Payload `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"`
  76. Protocol *MessageTransport_Protocol `protobuf:"bytes,2,opt,name=protocol" json:"protocol,omitempty"`
  77. unknownFields protoimpl.UnknownFields
  78. sizeCache protoimpl.SizeCache
  79. }
  80. func (x *MessageTransport) Reset() {
  81. *x = MessageTransport{}
  82. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[0]
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. ms.StoreMessageInfo(mi)
  85. }
  86. func (x *MessageTransport) String() string {
  87. return protoimpl.X.MessageStringOf(x)
  88. }
  89. func (*MessageTransport) ProtoMessage() {}
  90. func (x *MessageTransport) ProtoReflect() protoreflect.Message {
  91. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[0]
  92. if x != nil {
  93. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  94. if ms.LoadMessageInfo() == nil {
  95. ms.StoreMessageInfo(mi)
  96. }
  97. return ms
  98. }
  99. return mi.MessageOf(x)
  100. }
  101. // Deprecated: Use MessageTransport.ProtoReflect.Descriptor instead.
  102. func (*MessageTransport) Descriptor() ([]byte, []int) {
  103. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0}
  104. }
  105. func (x *MessageTransport) GetPayload() *MessageTransport_Payload {
  106. if x != nil {
  107. return x.Payload
  108. }
  109. return nil
  110. }
  111. func (x *MessageTransport) GetProtocol() *MessageTransport_Protocol {
  112. if x != nil {
  113. return x.Protocol
  114. }
  115. return nil
  116. }
  117. type DeviceListMetadata struct {
  118. state protoimpl.MessageState `protogen:"open.v1"`
  119. SenderKeyHash []byte `protobuf:"bytes,1,opt,name=senderKeyHash" json:"senderKeyHash,omitempty"`
  120. SenderTimestamp *uint64 `protobuf:"varint,2,opt,name=senderTimestamp" json:"senderTimestamp,omitempty"`
  121. RecipientKeyHash []byte `protobuf:"bytes,8,opt,name=recipientKeyHash" json:"recipientKeyHash,omitempty"`
  122. RecipientTimestamp *uint64 `protobuf:"varint,9,opt,name=recipientTimestamp" json:"recipientTimestamp,omitempty"`
  123. unknownFields protoimpl.UnknownFields
  124. sizeCache protoimpl.SizeCache
  125. }
  126. func (x *DeviceListMetadata) Reset() {
  127. *x = DeviceListMetadata{}
  128. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[1]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. func (x *DeviceListMetadata) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*DeviceListMetadata) ProtoMessage() {}
  136. func (x *DeviceListMetadata) ProtoReflect() protoreflect.Message {
  137. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[1]
  138. if x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use DeviceListMetadata.ProtoReflect.Descriptor instead.
  148. func (*DeviceListMetadata) Descriptor() ([]byte, []int) {
  149. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{1}
  150. }
  151. func (x *DeviceListMetadata) GetSenderKeyHash() []byte {
  152. if x != nil {
  153. return x.SenderKeyHash
  154. }
  155. return nil
  156. }
  157. func (x *DeviceListMetadata) GetSenderTimestamp() uint64 {
  158. if x != nil && x.SenderTimestamp != nil {
  159. return *x.SenderTimestamp
  160. }
  161. return 0
  162. }
  163. func (x *DeviceListMetadata) GetRecipientKeyHash() []byte {
  164. if x != nil {
  165. return x.RecipientKeyHash
  166. }
  167. return nil
  168. }
  169. func (x *DeviceListMetadata) GetRecipientTimestamp() uint64 {
  170. if x != nil && x.RecipientTimestamp != nil {
  171. return *x.RecipientTimestamp
  172. }
  173. return 0
  174. }
  175. type MessageTransport_Payload struct {
  176. state protoimpl.MessageState `protogen:"open.v1"`
  177. ApplicationPayload *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=applicationPayload" json:"applicationPayload,omitempty"`
  178. FutureProof *waCommon.FutureProofBehavior `protobuf:"varint,3,opt,name=futureProof,enum=WACommon.FutureProofBehavior" json:"futureProof,omitempty"`
  179. unknownFields protoimpl.UnknownFields
  180. sizeCache protoimpl.SizeCache
  181. }
  182. func (x *MessageTransport_Payload) Reset() {
  183. *x = MessageTransport_Payload{}
  184. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[2]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. func (x *MessageTransport_Payload) String() string {
  189. return protoimpl.X.MessageStringOf(x)
  190. }
  191. func (*MessageTransport_Payload) ProtoMessage() {}
  192. func (x *MessageTransport_Payload) ProtoReflect() protoreflect.Message {
  193. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[2]
  194. if x != nil {
  195. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  196. if ms.LoadMessageInfo() == nil {
  197. ms.StoreMessageInfo(mi)
  198. }
  199. return ms
  200. }
  201. return mi.MessageOf(x)
  202. }
  203. // Deprecated: Use MessageTransport_Payload.ProtoReflect.Descriptor instead.
  204. func (*MessageTransport_Payload) Descriptor() ([]byte, []int) {
  205. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 0}
  206. }
  207. func (x *MessageTransport_Payload) GetApplicationPayload() *waCommon.SubProtocol {
  208. if x != nil {
  209. return x.ApplicationPayload
  210. }
  211. return nil
  212. }
  213. func (x *MessageTransport_Payload) GetFutureProof() waCommon.FutureProofBehavior {
  214. if x != nil && x.FutureProof != nil {
  215. return *x.FutureProof
  216. }
  217. return waCommon.FutureProofBehavior(0)
  218. }
  219. type MessageTransport_Protocol struct {
  220. state protoimpl.MessageState `protogen:"open.v1"`
  221. Integral *MessageTransport_Protocol_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  222. Ancillary *MessageTransport_Protocol_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  223. unknownFields protoimpl.UnknownFields
  224. sizeCache protoimpl.SizeCache
  225. }
  226. func (x *MessageTransport_Protocol) Reset() {
  227. *x = MessageTransport_Protocol{}
  228. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[3]
  229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  230. ms.StoreMessageInfo(mi)
  231. }
  232. func (x *MessageTransport_Protocol) String() string {
  233. return protoimpl.X.MessageStringOf(x)
  234. }
  235. func (*MessageTransport_Protocol) ProtoMessage() {}
  236. func (x *MessageTransport_Protocol) ProtoReflect() protoreflect.Message {
  237. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[3]
  238. if x != nil {
  239. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  240. if ms.LoadMessageInfo() == nil {
  241. ms.StoreMessageInfo(mi)
  242. }
  243. return ms
  244. }
  245. return mi.MessageOf(x)
  246. }
  247. // Deprecated: Use MessageTransport_Protocol.ProtoReflect.Descriptor instead.
  248. func (*MessageTransport_Protocol) Descriptor() ([]byte, []int) {
  249. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1}
  250. }
  251. func (x *MessageTransport_Protocol) GetIntegral() *MessageTransport_Protocol_Integral {
  252. if x != nil {
  253. return x.Integral
  254. }
  255. return nil
  256. }
  257. func (x *MessageTransport_Protocol) GetAncillary() *MessageTransport_Protocol_Ancillary {
  258. if x != nil {
  259. return x.Ancillary
  260. }
  261. return nil
  262. }
  263. type MessageTransport_Protocol_Ancillary struct {
  264. state protoimpl.MessageState `protogen:"open.v1"`
  265. Skdm *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage `protobuf:"bytes,2,opt,name=skdm" json:"skdm,omitempty"`
  266. DeviceListMetadata *DeviceListMetadata `protobuf:"bytes,3,opt,name=deviceListMetadata" json:"deviceListMetadata,omitempty"`
  267. Icdc *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices `protobuf:"bytes,4,opt,name=icdc" json:"icdc,omitempty"`
  268. BackupDirective *MessageTransport_Protocol_Ancillary_BackupDirective `protobuf:"bytes,5,opt,name=backupDirective" json:"backupDirective,omitempty"`
  269. unknownFields protoimpl.UnknownFields
  270. sizeCache protoimpl.SizeCache
  271. }
  272. func (x *MessageTransport_Protocol_Ancillary) Reset() {
  273. *x = MessageTransport_Protocol_Ancillary{}
  274. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[4]
  275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  276. ms.StoreMessageInfo(mi)
  277. }
  278. func (x *MessageTransport_Protocol_Ancillary) String() string {
  279. return protoimpl.X.MessageStringOf(x)
  280. }
  281. func (*MessageTransport_Protocol_Ancillary) ProtoMessage() {}
  282. func (x *MessageTransport_Protocol_Ancillary) ProtoReflect() protoreflect.Message {
  283. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[4]
  284. if x != nil {
  285. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  286. if ms.LoadMessageInfo() == nil {
  287. ms.StoreMessageInfo(mi)
  288. }
  289. return ms
  290. }
  291. return mi.MessageOf(x)
  292. }
  293. // Deprecated: Use MessageTransport_Protocol_Ancillary.ProtoReflect.Descriptor instead.
  294. func (*MessageTransport_Protocol_Ancillary) Descriptor() ([]byte, []int) {
  295. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0}
  296. }
  297. func (x *MessageTransport_Protocol_Ancillary) GetSkdm() *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage {
  298. if x != nil {
  299. return x.Skdm
  300. }
  301. return nil
  302. }
  303. func (x *MessageTransport_Protocol_Ancillary) GetDeviceListMetadata() *DeviceListMetadata {
  304. if x != nil {
  305. return x.DeviceListMetadata
  306. }
  307. return nil
  308. }
  309. func (x *MessageTransport_Protocol_Ancillary) GetIcdc() *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices {
  310. if x != nil {
  311. return x.Icdc
  312. }
  313. return nil
  314. }
  315. func (x *MessageTransport_Protocol_Ancillary) GetBackupDirective() *MessageTransport_Protocol_Ancillary_BackupDirective {
  316. if x != nil {
  317. return x.BackupDirective
  318. }
  319. return nil
  320. }
  321. type MessageTransport_Protocol_Integral struct {
  322. state protoimpl.MessageState `protogen:"open.v1"`
  323. Padding []byte `protobuf:"bytes,1,opt,name=padding" json:"padding,omitempty"`
  324. DSM *MessageTransport_Protocol_Integral_DeviceSentMessage `protobuf:"bytes,2,opt,name=DSM" json:"DSM,omitempty"`
  325. unknownFields protoimpl.UnknownFields
  326. sizeCache protoimpl.SizeCache
  327. }
  328. func (x *MessageTransport_Protocol_Integral) Reset() {
  329. *x = MessageTransport_Protocol_Integral{}
  330. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[5]
  331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  332. ms.StoreMessageInfo(mi)
  333. }
  334. func (x *MessageTransport_Protocol_Integral) String() string {
  335. return protoimpl.X.MessageStringOf(x)
  336. }
  337. func (*MessageTransport_Protocol_Integral) ProtoMessage() {}
  338. func (x *MessageTransport_Protocol_Integral) ProtoReflect() protoreflect.Message {
  339. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[5]
  340. if x != nil {
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. if ms.LoadMessageInfo() == nil {
  343. ms.StoreMessageInfo(mi)
  344. }
  345. return ms
  346. }
  347. return mi.MessageOf(x)
  348. }
  349. // Deprecated: Use MessageTransport_Protocol_Integral.ProtoReflect.Descriptor instead.
  350. func (*MessageTransport_Protocol_Integral) Descriptor() ([]byte, []int) {
  351. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 1}
  352. }
  353. func (x *MessageTransport_Protocol_Integral) GetPadding() []byte {
  354. if x != nil {
  355. return x.Padding
  356. }
  357. return nil
  358. }
  359. func (x *MessageTransport_Protocol_Integral) GetDSM() *MessageTransport_Protocol_Integral_DeviceSentMessage {
  360. if x != nil {
  361. return x.DSM
  362. }
  363. return nil
  364. }
  365. type MessageTransport_Protocol_Ancillary_BackupDirective struct {
  366. state protoimpl.MessageState `protogen:"open.v1"`
  367. MessageID *string `protobuf:"bytes,1,opt,name=messageID" json:"messageID,omitempty"`
  368. ActionType *MessageTransport_Protocol_Ancillary_BackupDirective_ActionType `protobuf:"varint,2,opt,name=actionType,enum=WAMsgTransport.MessageTransport_Protocol_Ancillary_BackupDirective_ActionType" json:"actionType,omitempty"`
  369. SupplementalKey *string `protobuf:"bytes,3,opt,name=supplementalKey" json:"supplementalKey,omitempty"`
  370. unknownFields protoimpl.UnknownFields
  371. sizeCache protoimpl.SizeCache
  372. }
  373. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) Reset() {
  374. *x = MessageTransport_Protocol_Ancillary_BackupDirective{}
  375. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[6]
  376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  377. ms.StoreMessageInfo(mi)
  378. }
  379. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) String() string {
  380. return protoimpl.X.MessageStringOf(x)
  381. }
  382. func (*MessageTransport_Protocol_Ancillary_BackupDirective) ProtoMessage() {}
  383. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) ProtoReflect() protoreflect.Message {
  384. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[6]
  385. if x != nil {
  386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  387. if ms.LoadMessageInfo() == nil {
  388. ms.StoreMessageInfo(mi)
  389. }
  390. return ms
  391. }
  392. return mi.MessageOf(x)
  393. }
  394. // Deprecated: Use MessageTransport_Protocol_Ancillary_BackupDirective.ProtoReflect.Descriptor instead.
  395. func (*MessageTransport_Protocol_Ancillary_BackupDirective) Descriptor() ([]byte, []int) {
  396. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0, 0}
  397. }
  398. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) GetMessageID() string {
  399. if x != nil && x.MessageID != nil {
  400. return *x.MessageID
  401. }
  402. return ""
  403. }
  404. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) GetActionType() MessageTransport_Protocol_Ancillary_BackupDirective_ActionType {
  405. if x != nil && x.ActionType != nil {
  406. return *x.ActionType
  407. }
  408. return MessageTransport_Protocol_Ancillary_BackupDirective_NOOP
  409. }
  410. func (x *MessageTransport_Protocol_Ancillary_BackupDirective) GetSupplementalKey() string {
  411. if x != nil && x.SupplementalKey != nil {
  412. return *x.SupplementalKey
  413. }
  414. return ""
  415. }
  416. type MessageTransport_Protocol_Ancillary_ICDCParticipantDevices struct {
  417. state protoimpl.MessageState `protogen:"open.v1"`
  418. SenderIdentity *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription `protobuf:"bytes,1,opt,name=senderIdentity" json:"senderIdentity,omitempty"`
  419. RecipientIdentities []*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription `protobuf:"bytes,2,rep,name=recipientIdentities" json:"recipientIdentities,omitempty"`
  420. RecipientUserJIDs []string `protobuf:"bytes,3,rep,name=recipientUserJIDs" json:"recipientUserJIDs,omitempty"`
  421. unknownFields protoimpl.UnknownFields
  422. sizeCache protoimpl.SizeCache
  423. }
  424. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) Reset() {
  425. *x = MessageTransport_Protocol_Ancillary_ICDCParticipantDevices{}
  426. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[7]
  427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  428. ms.StoreMessageInfo(mi)
  429. }
  430. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) String() string {
  431. return protoimpl.X.MessageStringOf(x)
  432. }
  433. func (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) ProtoMessage() {}
  434. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) ProtoReflect() protoreflect.Message {
  435. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[7]
  436. if x != nil {
  437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  438. if ms.LoadMessageInfo() == nil {
  439. ms.StoreMessageInfo(mi)
  440. }
  441. return ms
  442. }
  443. return mi.MessageOf(x)
  444. }
  445. // Deprecated: Use MessageTransport_Protocol_Ancillary_ICDCParticipantDevices.ProtoReflect.Descriptor instead.
  446. func (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) Descriptor() ([]byte, []int) {
  447. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0, 1}
  448. }
  449. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) GetSenderIdentity() *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription {
  450. if x != nil {
  451. return x.SenderIdentity
  452. }
  453. return nil
  454. }
  455. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) GetRecipientIdentities() []*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription {
  456. if x != nil {
  457. return x.RecipientIdentities
  458. }
  459. return nil
  460. }
  461. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices) GetRecipientUserJIDs() []string {
  462. if x != nil {
  463. return x.RecipientUserJIDs
  464. }
  465. return nil
  466. }
  467. type MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage struct {
  468. state protoimpl.MessageState `protogen:"open.v1"`
  469. GroupID *string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
  470. AxolotlSenderKeyDistributionMessage []byte `protobuf:"bytes,2,opt,name=axolotlSenderKeyDistributionMessage" json:"axolotlSenderKeyDistributionMessage,omitempty"`
  471. unknownFields protoimpl.UnknownFields
  472. sizeCache protoimpl.SizeCache
  473. }
  474. func (x *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) Reset() {
  475. *x = MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage{}
  476. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[8]
  477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  478. ms.StoreMessageInfo(mi)
  479. }
  480. func (x *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) String() string {
  481. return protoimpl.X.MessageStringOf(x)
  482. }
  483. func (*MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) ProtoMessage() {}
  484. func (x *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) ProtoReflect() protoreflect.Message {
  485. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[8]
  486. if x != nil {
  487. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  488. if ms.LoadMessageInfo() == nil {
  489. ms.StoreMessageInfo(mi)
  490. }
  491. return ms
  492. }
  493. return mi.MessageOf(x)
  494. }
  495. // Deprecated: Use MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage.ProtoReflect.Descriptor instead.
  496. func (*MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) Descriptor() ([]byte, []int) {
  497. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0, 2}
  498. }
  499. func (x *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) GetGroupID() string {
  500. if x != nil && x.GroupID != nil {
  501. return *x.GroupID
  502. }
  503. return ""
  504. }
  505. func (x *MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage) GetAxolotlSenderKeyDistributionMessage() []byte {
  506. if x != nil {
  507. return x.AxolotlSenderKeyDistributionMessage
  508. }
  509. return nil
  510. }
  511. type MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription struct {
  512. state protoimpl.MessageState `protogen:"open.v1"`
  513. Seq *int32 `protobuf:"varint,1,opt,name=seq" json:"seq,omitempty"`
  514. SigningDevice []byte `protobuf:"bytes,2,opt,name=signingDevice" json:"signingDevice,omitempty"`
  515. UnknownDevices [][]byte `protobuf:"bytes,3,rep,name=unknownDevices" json:"unknownDevices,omitempty"`
  516. UnknownDeviceIDs []int32 `protobuf:"varint,4,rep,name=unknownDeviceIDs" json:"unknownDeviceIDs,omitempty"`
  517. unknownFields protoimpl.UnknownFields
  518. sizeCache protoimpl.SizeCache
  519. }
  520. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) Reset() {
  521. *x = MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription{}
  522. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[9]
  523. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  524. ms.StoreMessageInfo(mi)
  525. }
  526. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) String() string {
  527. return protoimpl.X.MessageStringOf(x)
  528. }
  529. func (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) ProtoMessage() {
  530. }
  531. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) ProtoReflect() protoreflect.Message {
  532. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[9]
  533. if x != nil {
  534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  535. if ms.LoadMessageInfo() == nil {
  536. ms.StoreMessageInfo(mi)
  537. }
  538. return ms
  539. }
  540. return mi.MessageOf(x)
  541. }
  542. // Deprecated: Use MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription.ProtoReflect.Descriptor instead.
  543. func (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) Descriptor() ([]byte, []int) {
  544. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 0, 1, 0}
  545. }
  546. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) GetSeq() int32 {
  547. if x != nil && x.Seq != nil {
  548. return *x.Seq
  549. }
  550. return 0
  551. }
  552. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) GetSigningDevice() []byte {
  553. if x != nil {
  554. return x.SigningDevice
  555. }
  556. return nil
  557. }
  558. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) GetUnknownDevices() [][]byte {
  559. if x != nil {
  560. return x.UnknownDevices
  561. }
  562. return nil
  563. }
  564. func (x *MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription) GetUnknownDeviceIDs() []int32 {
  565. if x != nil {
  566. return x.UnknownDeviceIDs
  567. }
  568. return nil
  569. }
  570. type MessageTransport_Protocol_Integral_DeviceSentMessage struct {
  571. state protoimpl.MessageState `protogen:"open.v1"`
  572. DestinationJID *string `protobuf:"bytes,1,opt,name=destinationJID" json:"destinationJID,omitempty"`
  573. Phash *string `protobuf:"bytes,2,opt,name=phash" json:"phash,omitempty"`
  574. unknownFields protoimpl.UnknownFields
  575. sizeCache protoimpl.SizeCache
  576. }
  577. func (x *MessageTransport_Protocol_Integral_DeviceSentMessage) Reset() {
  578. *x = MessageTransport_Protocol_Integral_DeviceSentMessage{}
  579. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[10]
  580. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  581. ms.StoreMessageInfo(mi)
  582. }
  583. func (x *MessageTransport_Protocol_Integral_DeviceSentMessage) String() string {
  584. return protoimpl.X.MessageStringOf(x)
  585. }
  586. func (*MessageTransport_Protocol_Integral_DeviceSentMessage) ProtoMessage() {}
  587. func (x *MessageTransport_Protocol_Integral_DeviceSentMessage) ProtoReflect() protoreflect.Message {
  588. mi := &file_waMsgTransport_WAMsgTransport_proto_msgTypes[10]
  589. if x != nil {
  590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  591. if ms.LoadMessageInfo() == nil {
  592. ms.StoreMessageInfo(mi)
  593. }
  594. return ms
  595. }
  596. return mi.MessageOf(x)
  597. }
  598. // Deprecated: Use MessageTransport_Protocol_Integral_DeviceSentMessage.ProtoReflect.Descriptor instead.
  599. func (*MessageTransport_Protocol_Integral_DeviceSentMessage) Descriptor() ([]byte, []int) {
  600. return file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP(), []int{0, 1, 1, 0}
  601. }
  602. func (x *MessageTransport_Protocol_Integral_DeviceSentMessage) GetDestinationJID() string {
  603. if x != nil && x.DestinationJID != nil {
  604. return *x.DestinationJID
  605. }
  606. return ""
  607. }
  608. func (x *MessageTransport_Protocol_Integral_DeviceSentMessage) GetPhash() string {
  609. if x != nil && x.Phash != nil {
  610. return *x.Phash
  611. }
  612. return ""
  613. }
  614. var File_waMsgTransport_WAMsgTransport_proto protoreflect.FileDescriptor
  615. const file_waMsgTransport_WAMsgTransport_proto_rawDesc = "" +
  616. "\n" +
  617. "#waMsgTransport/WAMsgTransport.proto\x12\x0eWAMsgTransport\x1a\x17waCommon/WACommon.proto\"\x8b\x10\n" +
  618. "\x10MessageTransport\x12B\n" +
  619. "\apayload\x18\x01 \x01(\v2(.WAMsgTransport.MessageTransport.PayloadR\apayload\x12E\n" +
  620. "\bprotocol\x18\x02 \x01(\v2).WAMsgTransport.MessageTransport.ProtocolR\bprotocol\x1a\x91\x01\n" +
  621. "\aPayload\x12E\n" +
  622. "\x12applicationPayload\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\x12applicationPayload\x12?\n" +
  623. "\vfutureProof\x18\x03 \x01(\x0e2\x1d.WACommon.FutureProofBehaviorR\vfutureProof\x1a\xd7\r\n" +
  624. "\bProtocol\x12N\n" +
  625. "\bintegral\x18\x01 \x01(\v22.WAMsgTransport.MessageTransport.Protocol.IntegralR\bintegral\x12Q\n" +
  626. "\tancillary\x18\x02 \x01(\v23.WAMsgTransport.MessageTransport.Protocol.AncillaryR\tancillary\x1a\xd5\n" +
  627. "\n" +
  628. "\tAncillary\x12d\n" +
  629. "\x04skdm\x18\x02 \x01(\v2P.WAMsgTransport.MessageTransport.Protocol.Ancillary.SenderKeyDistributionMessageR\x04skdm\x12R\n" +
  630. "\x12deviceListMetadata\x18\x03 \x01(\v2\".WAMsgTransport.DeviceListMetadataR\x12deviceListMetadata\x12^\n" +
  631. "\x04icdc\x18\x04 \x01(\v2J.WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevicesR\x04icdc\x12m\n" +
  632. "\x0fbackupDirective\x18\x05 \x01(\v2C.WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirectiveR\x0fbackupDirective\x1a\x90\x02\n" +
  633. "\x0fBackupDirective\x12\x1c\n" +
  634. "\tmessageID\x18\x01 \x01(\tR\tmessageID\x12n\n" +
  635. "\n" +
  636. "actionType\x18\x02 \x01(\x0e2N.WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective.ActionTypeR\n" +
  637. "actionType\x12(\n" +
  638. "\x0fsupplementalKey\x18\x03 \x01(\tR\x0fsupplementalKey\"E\n" +
  639. "\n" +
  640. "ActionType\x12\b\n" +
  641. "\x04NOOP\x10\x00\x12\n" +
  642. "\n" +
  643. "\x06UPSERT\x10\x01\x12\n" +
  644. "\n" +
  645. "\x06DELETE\x10\x02\x12\x15\n" +
  646. "\x11UPSERT_AND_DELETE\x10\x03\x1a\x9e\x04\n" +
  647. "\x16ICDCParticipantDevices\x12\x8e\x01\n" +
  648. "\x0esenderIdentity\x18\x01 \x01(\v2f.WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.ICDCIdentityListDescriptionR\x0esenderIdentity\x12\x98\x01\n" +
  649. "\x13recipientIdentities\x18\x02 \x03(\v2f.WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.ICDCIdentityListDescriptionR\x13recipientIdentities\x12,\n" +
  650. "\x11recipientUserJIDs\x18\x03 \x03(\tR\x11recipientUserJIDs\x1a\xa9\x01\n" +
  651. "\x1bICDCIdentityListDescription\x12\x10\n" +
  652. "\x03seq\x18\x01 \x01(\x05R\x03seq\x12$\n" +
  653. "\rsigningDevice\x18\x02 \x01(\fR\rsigningDevice\x12&\n" +
  654. "\x0eunknownDevices\x18\x03 \x03(\fR\x0eunknownDevices\x12*\n" +
  655. "\x10unknownDeviceIDs\x18\x04 \x03(\x05R\x10unknownDeviceIDs\x1a\x8a\x01\n" +
  656. "\x1cSenderKeyDistributionMessage\x12\x18\n" +
  657. "\agroupID\x18\x01 \x01(\tR\agroupID\x12P\n" +
  658. "#axolotlSenderKeyDistributionMessage\x18\x02 \x01(\fR#axolotlSenderKeyDistributionMessage\x1a\xcf\x01\n" +
  659. "\bIntegral\x12\x18\n" +
  660. "\apadding\x18\x01 \x01(\fR\apadding\x12V\n" +
  661. "\x03DSM\x18\x02 \x01(\v2D.WAMsgTransport.MessageTransport.Protocol.Integral.DeviceSentMessageR\x03DSM\x1aQ\n" +
  662. "\x11DeviceSentMessage\x12&\n" +
  663. "\x0edestinationJID\x18\x01 \x01(\tR\x0edestinationJID\x12\x14\n" +
  664. "\x05phash\x18\x02 \x01(\tR\x05phash\"\xc0\x01\n" +
  665. "\x12DeviceListMetadata\x12$\n" +
  666. "\rsenderKeyHash\x18\x01 \x01(\fR\rsenderKeyHash\x12(\n" +
  667. "\x0fsenderTimestamp\x18\x02 \x01(\x04R\x0fsenderTimestamp\x12*\n" +
  668. "\x10recipientKeyHash\x18\b \x01(\fR\x10recipientKeyHash\x12.\n" +
  669. "\x12recipientTimestamp\x18\t \x01(\x04R\x12recipientTimestampB*Z(go.mau.fi/whatsmeow/proto/waMsgTransport"
  670. var (
  671. file_waMsgTransport_WAMsgTransport_proto_rawDescOnce sync.Once
  672. file_waMsgTransport_WAMsgTransport_proto_rawDescData []byte
  673. )
  674. func file_waMsgTransport_WAMsgTransport_proto_rawDescGZIP() []byte {
  675. file_waMsgTransport_WAMsgTransport_proto_rawDescOnce.Do(func() {
  676. file_waMsgTransport_WAMsgTransport_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waMsgTransport_WAMsgTransport_proto_rawDesc), len(file_waMsgTransport_WAMsgTransport_proto_rawDesc)))
  677. })
  678. return file_waMsgTransport_WAMsgTransport_proto_rawDescData
  679. }
  680. var file_waMsgTransport_WAMsgTransport_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  681. var file_waMsgTransport_WAMsgTransport_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
  682. var file_waMsgTransport_WAMsgTransport_proto_goTypes = []any{
  683. (MessageTransport_Protocol_Ancillary_BackupDirective_ActionType)(0), // 0: WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective.ActionType
  684. (*MessageTransport)(nil), // 1: WAMsgTransport.MessageTransport
  685. (*DeviceListMetadata)(nil), // 2: WAMsgTransport.DeviceListMetadata
  686. (*MessageTransport_Payload)(nil), // 3: WAMsgTransport.MessageTransport.Payload
  687. (*MessageTransport_Protocol)(nil), // 4: WAMsgTransport.MessageTransport.Protocol
  688. (*MessageTransport_Protocol_Ancillary)(nil), // 5: WAMsgTransport.MessageTransport.Protocol.Ancillary
  689. (*MessageTransport_Protocol_Integral)(nil), // 6: WAMsgTransport.MessageTransport.Protocol.Integral
  690. (*MessageTransport_Protocol_Ancillary_BackupDirective)(nil), // 7: WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective
  691. (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices)(nil), // 8: WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices
  692. (*MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage)(nil), // 9: WAMsgTransport.MessageTransport.Protocol.Ancillary.SenderKeyDistributionMessage
  693. (*MessageTransport_Protocol_Ancillary_ICDCParticipantDevices_ICDCIdentityListDescription)(nil), // 10: WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.ICDCIdentityListDescription
  694. (*MessageTransport_Protocol_Integral_DeviceSentMessage)(nil), // 11: WAMsgTransport.MessageTransport.Protocol.Integral.DeviceSentMessage
  695. (*waCommon.SubProtocol)(nil), // 12: WACommon.SubProtocol
  696. (waCommon.FutureProofBehavior)(0), // 13: WACommon.FutureProofBehavior
  697. }
  698. var file_waMsgTransport_WAMsgTransport_proto_depIdxs = []int32{
  699. 3, // 0: WAMsgTransport.MessageTransport.payload:type_name -> WAMsgTransport.MessageTransport.Payload
  700. 4, // 1: WAMsgTransport.MessageTransport.protocol:type_name -> WAMsgTransport.MessageTransport.Protocol
  701. 12, // 2: WAMsgTransport.MessageTransport.Payload.applicationPayload:type_name -> WACommon.SubProtocol
  702. 13, // 3: WAMsgTransport.MessageTransport.Payload.futureProof:type_name -> WACommon.FutureProofBehavior
  703. 6, // 4: WAMsgTransport.MessageTransport.Protocol.integral:type_name -> WAMsgTransport.MessageTransport.Protocol.Integral
  704. 5, // 5: WAMsgTransport.MessageTransport.Protocol.ancillary:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary
  705. 9, // 6: WAMsgTransport.MessageTransport.Protocol.Ancillary.skdm:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.SenderKeyDistributionMessage
  706. 2, // 7: WAMsgTransport.MessageTransport.Protocol.Ancillary.deviceListMetadata:type_name -> WAMsgTransport.DeviceListMetadata
  707. 8, // 8: WAMsgTransport.MessageTransport.Protocol.Ancillary.icdc:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices
  708. 7, // 9: WAMsgTransport.MessageTransport.Protocol.Ancillary.backupDirective:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective
  709. 11, // 10: WAMsgTransport.MessageTransport.Protocol.Integral.DSM:type_name -> WAMsgTransport.MessageTransport.Protocol.Integral.DeviceSentMessage
  710. 0, // 11: WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective.actionType:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.BackupDirective.ActionType
  711. 10, // 12: WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.senderIdentity:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.ICDCIdentityListDescription
  712. 10, // 13: WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.recipientIdentities:type_name -> WAMsgTransport.MessageTransport.Protocol.Ancillary.ICDCParticipantDevices.ICDCIdentityListDescription
  713. 14, // [14:14] is the sub-list for method output_type
  714. 14, // [14:14] is the sub-list for method input_type
  715. 14, // [14:14] is the sub-list for extension type_name
  716. 14, // [14:14] is the sub-list for extension extendee
  717. 0, // [0:14] is the sub-list for field type_name
  718. }
  719. func init() { file_waMsgTransport_WAMsgTransport_proto_init() }
  720. func file_waMsgTransport_WAMsgTransport_proto_init() {
  721. if File_waMsgTransport_WAMsgTransport_proto != nil {
  722. return
  723. }
  724. type x struct{}
  725. out := protoimpl.TypeBuilder{
  726. File: protoimpl.DescBuilder{
  727. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  728. RawDescriptor: unsafe.Slice(unsafe.StringData(file_waMsgTransport_WAMsgTransport_proto_rawDesc), len(file_waMsgTransport_WAMsgTransport_proto_rawDesc)),
  729. NumEnums: 1,
  730. NumMessages: 11,
  731. NumExtensions: 0,
  732. NumServices: 0,
  733. },
  734. GoTypes: file_waMsgTransport_WAMsgTransport_proto_goTypes,
  735. DependencyIndexes: file_waMsgTransport_WAMsgTransport_proto_depIdxs,
  736. EnumInfos: file_waMsgTransport_WAMsgTransport_proto_enumTypes,
  737. MessageInfos: file_waMsgTransport_WAMsgTransport_proto_msgTypes,
  738. }.Build()
  739. File_waMsgTransport_WAMsgTransport_proto = out.File
  740. file_waMsgTransport_WAMsgTransport_proto_goTypes = nil
  741. file_waMsgTransport_WAMsgTransport_proto_depIdxs = nil
  742. }