slidge-whatsapp 0.3.0b0__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.4__cp311-cp311-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/contact.py +2 -0
- slidge_whatsapp/event.go +72 -22
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +199 -199
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +156 -156
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1543 -1543
- slidge_whatsapp/generated/whatsapp.go +1203 -1203
- slidge_whatsapp/generated/whatsapp.py +1377 -1377
- slidge_whatsapp/generated/whatsapp_go.h +199 -199
- slidge_whatsapp/go.mod +11 -11
- slidge_whatsapp/go.sum +26 -26
- slidge_whatsapp/session.go +4 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +21 -5
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_netbsd.go +15 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_netbsd.go +9 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +113 -60
- slidge_whatsapp/vendor/github.com/ebitengine/purego/gen.go +6 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_loong64.s +40 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_loong64.go +92 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_netbsd.go +106 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_netbsd.go +26 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/netbsd.go +23 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +11 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_netbsd.go +30 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_loong64.s +71 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +5 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +8 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +16 -6
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +190 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +6 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_loong64.s +96 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_loong64.s +75 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +6 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +3 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +13 -10
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2002 -2002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4002 -4002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_loong64.s +4014 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +7 -2
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +119 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +3 -34
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/string.go +20 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/writer.go +78 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/cast.go +42 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/chunk.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/deduplicate.go +67 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/diff.go +63 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +15 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +48 -7
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +13 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +16 -5
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +27 -12
- slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +47 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +60 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +20 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +63 -42
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +31 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +77 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +22 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +7747 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/{waBotMetadata/WABotMetadata.proto → waAICommon/WAAICommon.proto} +269 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +128 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8953 -10087
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +216 -330
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +11 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +226 -83
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +709 -449
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +78 -24
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +528 -267
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +47 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +6 -13
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +130 -62
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +33 -32
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +16 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sessioncache.go +125 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +82 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +135 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +8 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/11-redacted-phone-contacts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +24 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +24 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +7 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +43 -3
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +7 -4
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +11 -6
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go125.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go126.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +24 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +0 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +35 -26
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +4 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/{writesched_priority.go → writesched_priority_rfc7540.go} +52 -52
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority_rfc9128.go +209 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +2 -2
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +18 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +2 -9
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +35 -17
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +14 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/modules.txt +15 -13
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/METADATA +4 -3
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/RECORD +166 -138
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info/licenses}/LICENSE +0 -0
|
@@ -56,6 +56,17 @@ message CallLogRecord {
|
|
|
56
56
|
optional CallType callType = 15;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
message AvatarUpdatedAction {
|
|
60
|
+
enum AvatarEventType {
|
|
61
|
+
UPDATED = 0;
|
|
62
|
+
CREATED = 1;
|
|
63
|
+
DELETED = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
optional AvatarEventType eventType = 1;
|
|
67
|
+
repeated StickerAction recentAvatarStickers = 2;
|
|
68
|
+
}
|
|
69
|
+
|
|
59
70
|
message MaibaAIFeaturesControlAction {
|
|
60
71
|
enum MaibaAIFeatureStatus {
|
|
61
72
|
ENABLED = 0;
|
|
@@ -106,6 +117,14 @@ message MerchantPaymentPartnerAction {
|
|
|
106
117
|
optional string credentialID = 4;
|
|
107
118
|
}
|
|
108
119
|
|
|
120
|
+
message GalaxyFlowAction {
|
|
121
|
+
enum GalaxyFlowActionType {
|
|
122
|
+
LAUNCH = 1;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
required GalaxyFlowActionType type = 1;
|
|
126
|
+
}
|
|
127
|
+
|
|
109
128
|
message NoteEditAction {
|
|
110
129
|
enum NoteType {
|
|
111
130
|
UNSTRUCTURED = 1;
|
|
@@ -186,6 +205,9 @@ message PatchDebugData {
|
|
|
186
205
|
DARWIN = 6;
|
|
187
206
|
IPAD = 7;
|
|
188
207
|
WEAROS = 8;
|
|
208
|
+
WASG = 9;
|
|
209
|
+
WEARM = 10;
|
|
210
|
+
CAPI = 11;
|
|
189
211
|
}
|
|
190
212
|
|
|
191
213
|
optional bytes currentLthash = 1;
|
|
@@ -271,6 +293,8 @@ message SyncActionValue {
|
|
|
271
293
|
optional BusinessBroadcastListAction businessBroadcastListAction = 69;
|
|
272
294
|
optional MusicUserIdAction musicUserIDAction = 70;
|
|
273
295
|
optional StatusPostOptInNotificationPreferencesAction statusPostOptInNotificationPreferencesAction = 71;
|
|
296
|
+
optional AvatarUpdatedAction avatarUpdatedAction = 72;
|
|
297
|
+
optional GalaxyFlowAction galaxyFlowAction = 73;
|
|
274
298
|
}
|
|
275
299
|
|
|
276
300
|
message StatusPostOptInNotificationPreferencesAction {
|
|
@@ -882,6 +882,8 @@ type ClientPayload struct {
|
|
|
882
882
|
AccountType *ClientPayload_AccountType `protobuf:"varint,42,opt,name=accountType,enum=WAWebProtobufsWa6.ClientPayload_AccountType" json:"accountType,omitempty"`
|
|
883
883
|
ConnectionSequenceInfo *int32 `protobuf:"fixed32,43,opt,name=connectionSequenceInfo" json:"connectionSequenceInfo,omitempty"`
|
|
884
884
|
PaaLink *bool `protobuf:"varint,44,opt,name=paaLink" json:"paaLink,omitempty"`
|
|
885
|
+
PreacksCount *int32 `protobuf:"varint,45,opt,name=preacksCount" json:"preacksCount,omitempty"`
|
|
886
|
+
ProcessingQueueSize *int32 `protobuf:"varint,46,opt,name=processingQueueSize" json:"processingQueueSize,omitempty"`
|
|
885
887
|
unknownFields protoimpl.UnknownFields
|
|
886
888
|
sizeCache protoimpl.SizeCache
|
|
887
889
|
}
|
|
@@ -1140,6 +1142,20 @@ func (x *ClientPayload) GetPaaLink() bool {
|
|
|
1140
1142
|
return false
|
|
1141
1143
|
}
|
|
1142
1144
|
|
|
1145
|
+
func (x *ClientPayload) GetPreacksCount() int32 {
|
|
1146
|
+
if x != nil && x.PreacksCount != nil {
|
|
1147
|
+
return *x.PreacksCount
|
|
1148
|
+
}
|
|
1149
|
+
return 0
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
func (x *ClientPayload) GetProcessingQueueSize() int32 {
|
|
1153
|
+
if x != nil && x.ProcessingQueueSize != nil {
|
|
1154
|
+
return *x.ProcessingQueueSize
|
|
1155
|
+
}
|
|
1156
|
+
return 0
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1143
1159
|
type HandshakeMessage struct {
|
|
1144
1160
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1145
1161
|
ClientHello *HandshakeMessage_ClientHello `protobuf:"bytes,2,opt,name=clientHello" json:"clientHello,omitempty"`
|
|
@@ -1845,11 +1861,12 @@ func (x *ClientPayload_UserAgent_AppVersion) GetQuinary() uint32 {
|
|
|
1845
1861
|
}
|
|
1846
1862
|
|
|
1847
1863
|
type HandshakeMessage_ClientFinish struct {
|
|
1848
|
-
state
|
|
1849
|
-
Static
|
|
1850
|
-
Payload
|
|
1851
|
-
|
|
1852
|
-
|
|
1864
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1865
|
+
Static []byte `protobuf:"bytes,1,opt,name=static" json:"static,omitempty"`
|
|
1866
|
+
Payload []byte `protobuf:"bytes,2,opt,name=payload" json:"payload,omitempty"`
|
|
1867
|
+
ExtendedCiphertext []byte `protobuf:"bytes,3,opt,name=extendedCiphertext" json:"extendedCiphertext,omitempty"`
|
|
1868
|
+
unknownFields protoimpl.UnknownFields
|
|
1869
|
+
sizeCache protoimpl.SizeCache
|
|
1853
1870
|
}
|
|
1854
1871
|
|
|
1855
1872
|
func (x *HandshakeMessage_ClientFinish) Reset() {
|
|
@@ -1896,13 +1913,21 @@ func (x *HandshakeMessage_ClientFinish) GetPayload() []byte {
|
|
|
1896
1913
|
return nil
|
|
1897
1914
|
}
|
|
1898
1915
|
|
|
1916
|
+
func (x *HandshakeMessage_ClientFinish) GetExtendedCiphertext() []byte {
|
|
1917
|
+
if x != nil {
|
|
1918
|
+
return x.ExtendedCiphertext
|
|
1919
|
+
}
|
|
1920
|
+
return nil
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1899
1923
|
type HandshakeMessage_ServerHello struct {
|
|
1900
|
-
state
|
|
1901
|
-
Ephemeral
|
|
1902
|
-
Static
|
|
1903
|
-
Payload
|
|
1904
|
-
|
|
1905
|
-
|
|
1924
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1925
|
+
Ephemeral []byte `protobuf:"bytes,1,opt,name=ephemeral" json:"ephemeral,omitempty"`
|
|
1926
|
+
Static []byte `protobuf:"bytes,2,opt,name=static" json:"static,omitempty"`
|
|
1927
|
+
Payload []byte `protobuf:"bytes,3,opt,name=payload" json:"payload,omitempty"`
|
|
1928
|
+
ExtendedStatic []byte `protobuf:"bytes,4,opt,name=extendedStatic" json:"extendedStatic,omitempty"`
|
|
1929
|
+
unknownFields protoimpl.UnknownFields
|
|
1930
|
+
sizeCache protoimpl.SizeCache
|
|
1906
1931
|
}
|
|
1907
1932
|
|
|
1908
1933
|
func (x *HandshakeMessage_ServerHello) Reset() {
|
|
@@ -1956,13 +1981,22 @@ func (x *HandshakeMessage_ServerHello) GetPayload() []byte {
|
|
|
1956
1981
|
return nil
|
|
1957
1982
|
}
|
|
1958
1983
|
|
|
1984
|
+
func (x *HandshakeMessage_ServerHello) GetExtendedStatic() []byte {
|
|
1985
|
+
if x != nil {
|
|
1986
|
+
return x.ExtendedStatic
|
|
1987
|
+
}
|
|
1988
|
+
return nil
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1959
1991
|
type HandshakeMessage_ClientHello struct {
|
|
1960
|
-
state
|
|
1961
|
-
Ephemeral
|
|
1962
|
-
Static
|
|
1963
|
-
Payload
|
|
1964
|
-
|
|
1965
|
-
|
|
1992
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1993
|
+
Ephemeral []byte `protobuf:"bytes,1,opt,name=ephemeral" json:"ephemeral,omitempty"`
|
|
1994
|
+
Static []byte `protobuf:"bytes,2,opt,name=static" json:"static,omitempty"`
|
|
1995
|
+
Payload []byte `protobuf:"bytes,3,opt,name=payload" json:"payload,omitempty"`
|
|
1996
|
+
UseExtended *bool `protobuf:"varint,4,opt,name=useExtended" json:"useExtended,omitempty"`
|
|
1997
|
+
ExtendedCiphertext []byte `protobuf:"bytes,5,opt,name=extendedCiphertext" json:"extendedCiphertext,omitempty"`
|
|
1998
|
+
unknownFields protoimpl.UnknownFields
|
|
1999
|
+
sizeCache protoimpl.SizeCache
|
|
1966
2000
|
}
|
|
1967
2001
|
|
|
1968
2002
|
func (x *HandshakeMessage_ClientHello) Reset() {
|
|
@@ -2016,11 +2050,25 @@ func (x *HandshakeMessage_ClientHello) GetPayload() []byte {
|
|
|
2016
2050
|
return nil
|
|
2017
2051
|
}
|
|
2018
2052
|
|
|
2053
|
+
func (x *HandshakeMessage_ClientHello) GetUseExtended() bool {
|
|
2054
|
+
if x != nil && x.UseExtended != nil {
|
|
2055
|
+
return *x.UseExtended
|
|
2056
|
+
}
|
|
2057
|
+
return false
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
func (x *HandshakeMessage_ClientHello) GetExtendedCiphertext() []byte {
|
|
2061
|
+
if x != nil {
|
|
2062
|
+
return x.ExtendedCiphertext
|
|
2063
|
+
}
|
|
2064
|
+
return nil
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2019
2067
|
var File_waWa6_WAWebProtobufsWa6_proto protoreflect.FileDescriptor
|
|
2020
2068
|
|
|
2021
2069
|
const file_waWa6_WAWebProtobufsWa6_proto_rawDesc = "" +
|
|
2022
2070
|
"\n" +
|
|
2023
|
-
"\x1dwaWa6/WAWebProtobufsWa6.proto\x12\x11WAWebProtobufsWa6\"\
|
|
2071
|
+
"\x1dwaWa6/WAWebProtobufsWa6.proto\x12\x11WAWebProtobufsWa6\"\xd8*\n" +
|
|
2024
2072
|
"\rClientPayload\x12\x1a\n" +
|
|
2025
2073
|
"\busername\x18\x01 \x01(\x04R\busername\x12\x18\n" +
|
|
2026
2074
|
"\apassive\x18\x03 \x01(\bR\apassive\x12H\n" +
|
|
@@ -2056,7 +2104,9 @@ const file_waWa6_WAWebProtobufsWa6_proto_rawDesc = "" +
|
|
|
2056
2104
|
"\rlidDbMigrated\x18) \x01(\bR\rlidDbMigrated\x12N\n" +
|
|
2057
2105
|
"\vaccountType\x18* \x01(\x0e2,.WAWebProtobufsWa6.ClientPayload.AccountTypeR\vaccountType\x126\n" +
|
|
2058
2106
|
"\x16connectionSequenceInfo\x18+ \x01(\x0fR\x16connectionSequenceInfo\x12\x18\n" +
|
|
2059
|
-
"\apaaLink\x18, \x01(\bR\apaaLink\
|
|
2107
|
+
"\apaaLink\x18, \x01(\bR\apaaLink\x12\"\n" +
|
|
2108
|
+
"\fpreacksCount\x18- \x01(\x05R\fpreacksCount\x120\n" +
|
|
2109
|
+
"\x13processingQueueSize\x18. \x01(\x05R\x13processingQueueSize\x1a\xea\x01\n" +
|
|
2060
2110
|
"\tDNSSource\x12\\\n" +
|
|
2061
2111
|
"\tdnsMethod\x18\x0f \x01(\x0e2>.WAWebProtobufsWa6.ClientPayload.DNSSource.DNSResolutionMethodR\tdnsMethod\x12\x1c\n" +
|
|
2062
2112
|
"\tappCached\x18\x10 \x01(\bR\tappCached\"a\n" +
|
|
@@ -2236,22 +2286,26 @@ const file_waWa6_WAWebProtobufsWa6_proto_rawDesc = "" +
|
|
|
2236
2286
|
"\x0fIOSAppExtension\x12\x13\n" +
|
|
2237
2287
|
"\x0fSHARE_EXTENSION\x10\x00\x12\x15\n" +
|
|
2238
2288
|
"\x11SERVICE_EXTENSION\x10\x01\x12\x15\n" +
|
|
2239
|
-
"\x11INTENTS_EXTENSION\x10\x02\"\
|
|
2289
|
+
"\x11INTENTS_EXTENSION\x10\x02\"\xba\x05\n" +
|
|
2240
2290
|
"\x10HandshakeMessage\x12Q\n" +
|
|
2241
2291
|
"\vclientHello\x18\x02 \x01(\v2/.WAWebProtobufsWa6.HandshakeMessage.ClientHelloR\vclientHello\x12Q\n" +
|
|
2242
2292
|
"\vserverHello\x18\x03 \x01(\v2/.WAWebProtobufsWa6.HandshakeMessage.ServerHelloR\vserverHello\x12T\n" +
|
|
2243
|
-
"\fclientFinish\x18\x04 \x01(\v20.WAWebProtobufsWa6.HandshakeMessage.ClientFinishR\fclientFinish\
|
|
2293
|
+
"\fclientFinish\x18\x04 \x01(\v20.WAWebProtobufsWa6.HandshakeMessage.ClientFinishR\fclientFinish\x1ap\n" +
|
|
2244
2294
|
"\fClientFinish\x12\x16\n" +
|
|
2245
2295
|
"\x06static\x18\x01 \x01(\fR\x06static\x12\x18\n" +
|
|
2246
|
-
"\apayload\x18\x02 \x01(\fR\apayload\
|
|
2296
|
+
"\apayload\x18\x02 \x01(\fR\apayload\x12.\n" +
|
|
2297
|
+
"\x12extendedCiphertext\x18\x03 \x01(\fR\x12extendedCiphertext\x1a\x85\x01\n" +
|
|
2247
2298
|
"\vServerHello\x12\x1c\n" +
|
|
2248
2299
|
"\tephemeral\x18\x01 \x01(\fR\tephemeral\x12\x16\n" +
|
|
2249
2300
|
"\x06static\x18\x02 \x01(\fR\x06static\x12\x18\n" +
|
|
2250
|
-
"\apayload\x18\x03 \x01(\fR\apayload\
|
|
2301
|
+
"\apayload\x18\x03 \x01(\fR\apayload\x12&\n" +
|
|
2302
|
+
"\x0eextendedStatic\x18\x04 \x01(\fR\x0eextendedStatic\x1a\xaf\x01\n" +
|
|
2251
2303
|
"\vClientHello\x12\x1c\n" +
|
|
2252
2304
|
"\tephemeral\x18\x01 \x01(\fR\tephemeral\x12\x16\n" +
|
|
2253
2305
|
"\x06static\x18\x02 \x01(\fR\x06static\x12\x18\n" +
|
|
2254
|
-
"\apayload\x18\x03 \x01(\fR\
|
|
2306
|
+
"\apayload\x18\x03 \x01(\fR\apayload\x12 \n" +
|
|
2307
|
+
"\vuseExtended\x18\x04 \x01(\bR\vuseExtended\x12.\n" +
|
|
2308
|
+
"\x12extendedCiphertext\x18\x05 \x01(\fR\x12extendedCiphertextB!Z\x1fgo.mau.fi/whatsmeow/proto/waWa6"
|
|
2255
2309
|
|
|
2256
2310
|
var (
|
|
2257
2311
|
file_waWa6_WAWebProtobufsWa6_proto_rawDescOnce sync.Once
|
|
@@ -230,24 +230,30 @@ message ClientPayload {
|
|
|
230
230
|
optional AccountType accountType = 42;
|
|
231
231
|
optional sfixed32 connectionSequenceInfo = 43;
|
|
232
232
|
optional bool paaLink = 44;
|
|
233
|
+
optional int32 preacksCount = 45;
|
|
234
|
+
optional int32 processingQueueSize = 46;
|
|
233
235
|
}
|
|
234
236
|
|
|
235
237
|
message HandshakeMessage {
|
|
236
238
|
message ClientFinish {
|
|
237
239
|
optional bytes static = 1;
|
|
238
240
|
optional bytes payload = 2;
|
|
241
|
+
optional bytes extendedCiphertext = 3;
|
|
239
242
|
}
|
|
240
243
|
|
|
241
244
|
message ServerHello {
|
|
242
245
|
optional bytes ephemeral = 1;
|
|
243
246
|
optional bytes static = 2;
|
|
244
247
|
optional bytes payload = 3;
|
|
248
|
+
optional bytes extendedStatic = 4;
|
|
245
249
|
}
|
|
246
250
|
|
|
247
251
|
message ClientHello {
|
|
248
252
|
optional bytes ephemeral = 1;
|
|
249
253
|
optional bytes static = 2;
|
|
250
254
|
optional bytes payload = 3;
|
|
255
|
+
optional bool useExtended = 4;
|
|
256
|
+
optional bytes extendedCiphertext = 5;
|
|
251
257
|
}
|
|
252
258
|
|
|
253
259
|
optional ClientHello clientHello = 2;
|