slidge-whatsapp 0.2.6__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.0__cp312-cp312-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 +15 -3
- slidge_whatsapp/event.go +152 -50
- slidge_whatsapp/gateway.go +7 -63
- slidge_whatsapp/gateway.py +2 -3
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +185 -168
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +149 -135
- slidge_whatsapp/generated/whatsapp.c +1883 -1611
- slidge_whatsapp/generated/whatsapp.go +1157 -1046
- slidge_whatsapp/generated/whatsapp.py +1326 -1201
- slidge_whatsapp/generated/whatsapp_go.h +185 -168
- slidge_whatsapp/go.mod +18 -15
- slidge_whatsapp/go.sum +38 -32
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +6 -2
- slidge_whatsapp/session.go +34 -17
- slidge_whatsapp/session.py +46 -14
- slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +30 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +51 -13
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +3096 -1651
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +188 -128
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +2 -2
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +60 -26
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +1 -6
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +19 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +79 -45
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +13 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +19 -12
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +26 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +99 -27
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +54 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +208 -57
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +2 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +17 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +16 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +46 -10
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8975 -11209
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +193 -421
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +52 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +952 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1143 -463
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +60 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +60 -38
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +11 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +20 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +10 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +38 -21
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +9 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +25 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +4 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +14 -8
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +44 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +8 -8
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +14 -3
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +7 -29
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +53 -71
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +20 -74
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +1 -55
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +6 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +483 -483
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +10 -5
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +68 -22
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +8 -0
- slidge_whatsapp/vendor/modules.txt +57 -23
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +254 -174
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -360,6 +361,7 @@ const (
|
|
|
360
361
|
SO_OOBINLINE = 0xa
|
|
361
362
|
SO_PASSCRED = 0x10
|
|
362
363
|
SO_PASSPIDFD = 0x4c
|
|
364
|
+
SO_PASSRIGHTS = 0x53
|
|
363
365
|
SO_PASSSEC = 0x22
|
|
364
366
|
SO_PEEK_OFF = 0x2a
|
|
365
367
|
SO_PEERCRED = 0x11
|
|
@@ -372,6 +374,7 @@ const (
|
|
|
372
374
|
SO_RCVBUFFORCE = 0x21
|
|
373
375
|
SO_RCVLOWAT = 0x12
|
|
374
376
|
SO_RCVMARK = 0x4b
|
|
377
|
+
SO_RCVPRIORITY = 0x52
|
|
375
378
|
SO_RCVTIMEO = 0x14
|
|
376
379
|
SO_RCVTIMEO_NEW = 0x42
|
|
377
380
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -361,6 +362,7 @@ const (
|
|
|
361
362
|
SO_OOBINLINE = 0xa
|
|
362
363
|
SO_PASSCRED = 0x10
|
|
363
364
|
SO_PASSPIDFD = 0x4c
|
|
365
|
+
SO_PASSRIGHTS = 0x53
|
|
364
366
|
SO_PASSSEC = 0x22
|
|
365
367
|
SO_PEEK_OFF = 0x2a
|
|
366
368
|
SO_PEERCRED = 0x11
|
|
@@ -373,6 +375,7 @@ const (
|
|
|
373
375
|
SO_RCVBUFFORCE = 0x21
|
|
374
376
|
SO_RCVLOWAT = 0x12
|
|
375
377
|
SO_RCVMARK = 0x4b
|
|
378
|
+
SO_RCVPRIORITY = 0x52
|
|
376
379
|
SO_RCVTIMEO = 0x14
|
|
377
380
|
SO_RCVTIMEO_NEW = 0x42
|
|
378
381
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -366,6 +367,7 @@ const (
|
|
|
366
367
|
SO_OOBINLINE = 0xa
|
|
367
368
|
SO_PASSCRED = 0x10
|
|
368
369
|
SO_PASSPIDFD = 0x4c
|
|
370
|
+
SO_PASSRIGHTS = 0x53
|
|
369
371
|
SO_PASSSEC = 0x22
|
|
370
372
|
SO_PEEK_OFF = 0x2a
|
|
371
373
|
SO_PEERCRED = 0x11
|
|
@@ -378,6 +380,7 @@ const (
|
|
|
378
380
|
SO_RCVBUFFORCE = 0x21
|
|
379
381
|
SO_RCVLOWAT = 0x12
|
|
380
382
|
SO_RCVMARK = 0x4b
|
|
383
|
+
SO_RCVPRIORITY = 0x52
|
|
381
384
|
SO_RCVTIMEO = 0x14
|
|
382
385
|
SO_RCVTIMEO_NEW = 0x42
|
|
383
386
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -359,6 +360,7 @@ const (
|
|
|
359
360
|
SO_OOBINLINE = 0xa
|
|
360
361
|
SO_PASSCRED = 0x10
|
|
361
362
|
SO_PASSPIDFD = 0x4c
|
|
363
|
+
SO_PASSRIGHTS = 0x53
|
|
362
364
|
SO_PASSSEC = 0x22
|
|
363
365
|
SO_PEEK_OFF = 0x2a
|
|
364
366
|
SO_PEERCRED = 0x11
|
|
@@ -371,6 +373,7 @@ const (
|
|
|
371
373
|
SO_RCVBUFFORCE = 0x21
|
|
372
374
|
SO_RCVLOWAT = 0x12
|
|
373
375
|
SO_RCVMARK = 0x4b
|
|
376
|
+
SO_RCVPRIORITY = 0x52
|
|
374
377
|
SO_RCVTIMEO = 0x14
|
|
375
378
|
SO_RCVTIMEO_NEW = 0x42
|
|
376
379
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -353,6 +354,7 @@ const (
|
|
|
353
354
|
SO_OOBINLINE = 0xa
|
|
354
355
|
SO_PASSCRED = 0x10
|
|
355
356
|
SO_PASSPIDFD = 0x4c
|
|
357
|
+
SO_PASSRIGHTS = 0x53
|
|
356
358
|
SO_PASSSEC = 0x22
|
|
357
359
|
SO_PEEK_OFF = 0x2a
|
|
358
360
|
SO_PEERCRED = 0x11
|
|
@@ -365,6 +367,7 @@ const (
|
|
|
365
367
|
SO_RCVBUFFORCE = 0x21
|
|
366
368
|
SO_RCVLOWAT = 0x12
|
|
367
369
|
SO_RCVMARK = 0x4b
|
|
370
|
+
SO_RCVPRIORITY = 0x52
|
|
368
371
|
SO_RCVTIMEO = 0x14
|
|
369
372
|
SO_RCVTIMEO_NEW = 0x42
|
|
370
373
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -359,6 +360,7 @@ const (
|
|
|
359
360
|
SO_OOBINLINE = 0x100
|
|
360
361
|
SO_PASSCRED = 0x11
|
|
361
362
|
SO_PASSPIDFD = 0x4c
|
|
363
|
+
SO_PASSRIGHTS = 0x53
|
|
362
364
|
SO_PASSSEC = 0x22
|
|
363
365
|
SO_PEEK_OFF = 0x2a
|
|
364
366
|
SO_PEERCRED = 0x12
|
|
@@ -371,6 +373,7 @@ const (
|
|
|
371
373
|
SO_RCVBUFFORCE = 0x21
|
|
372
374
|
SO_RCVLOWAT = 0x1004
|
|
373
375
|
SO_RCVMARK = 0x4b
|
|
376
|
+
SO_RCVPRIORITY = 0x52
|
|
374
377
|
SO_RCVTIMEO = 0x1006
|
|
375
378
|
SO_RCVTIMEO_NEW = 0x42
|
|
376
379
|
SO_RCVTIMEO_OLD = 0x1006
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -359,6 +360,7 @@ const (
|
|
|
359
360
|
SO_OOBINLINE = 0x100
|
|
360
361
|
SO_PASSCRED = 0x11
|
|
361
362
|
SO_PASSPIDFD = 0x4c
|
|
363
|
+
SO_PASSRIGHTS = 0x53
|
|
362
364
|
SO_PASSSEC = 0x22
|
|
363
365
|
SO_PEEK_OFF = 0x2a
|
|
364
366
|
SO_PEERCRED = 0x12
|
|
@@ -371,6 +373,7 @@ const (
|
|
|
371
373
|
SO_RCVBUFFORCE = 0x21
|
|
372
374
|
SO_RCVLOWAT = 0x1004
|
|
373
375
|
SO_RCVMARK = 0x4b
|
|
376
|
+
SO_RCVPRIORITY = 0x52
|
|
374
377
|
SO_RCVTIMEO = 0x1006
|
|
375
378
|
SO_RCVTIMEO_NEW = 0x42
|
|
376
379
|
SO_RCVTIMEO_OLD = 0x1006
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -359,6 +360,7 @@ const (
|
|
|
359
360
|
SO_OOBINLINE = 0x100
|
|
360
361
|
SO_PASSCRED = 0x11
|
|
361
362
|
SO_PASSPIDFD = 0x4c
|
|
363
|
+
SO_PASSRIGHTS = 0x53
|
|
362
364
|
SO_PASSSEC = 0x22
|
|
363
365
|
SO_PEEK_OFF = 0x2a
|
|
364
366
|
SO_PEERCRED = 0x12
|
|
@@ -371,6 +373,7 @@ const (
|
|
|
371
373
|
SO_RCVBUFFORCE = 0x21
|
|
372
374
|
SO_RCVLOWAT = 0x1004
|
|
373
375
|
SO_RCVMARK = 0x4b
|
|
376
|
+
SO_RCVPRIORITY = 0x52
|
|
374
377
|
SO_RCVTIMEO = 0x1006
|
|
375
378
|
SO_RCVTIMEO_NEW = 0x42
|
|
376
379
|
SO_RCVTIMEO_OLD = 0x1006
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -359,6 +360,7 @@ const (
|
|
|
359
360
|
SO_OOBINLINE = 0x100
|
|
360
361
|
SO_PASSCRED = 0x11
|
|
361
362
|
SO_PASSPIDFD = 0x4c
|
|
363
|
+
SO_PASSRIGHTS = 0x53
|
|
362
364
|
SO_PASSSEC = 0x22
|
|
363
365
|
SO_PEEK_OFF = 0x2a
|
|
364
366
|
SO_PEERCRED = 0x12
|
|
@@ -371,6 +373,7 @@ const (
|
|
|
371
373
|
SO_RCVBUFFORCE = 0x21
|
|
372
374
|
SO_RCVLOWAT = 0x1004
|
|
373
375
|
SO_RCVMARK = 0x4b
|
|
376
|
+
SO_RCVPRIORITY = 0x52
|
|
374
377
|
SO_RCVTIMEO = 0x1006
|
|
375
378
|
SO_RCVTIMEO_NEW = 0x42
|
|
376
379
|
SO_RCVTIMEO_OLD = 0x1006
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x300
|
|
69
69
|
CSIZE = 0x300
|
|
70
70
|
CSTOPB = 0x400
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x40
|
|
@@ -414,6 +415,7 @@ const (
|
|
|
414
415
|
SO_OOBINLINE = 0xa
|
|
415
416
|
SO_PASSCRED = 0x14
|
|
416
417
|
SO_PASSPIDFD = 0x4c
|
|
418
|
+
SO_PASSRIGHTS = 0x53
|
|
417
419
|
SO_PASSSEC = 0x22
|
|
418
420
|
SO_PEEK_OFF = 0x2a
|
|
419
421
|
SO_PEERCRED = 0x15
|
|
@@ -426,6 +428,7 @@ const (
|
|
|
426
428
|
SO_RCVBUFFORCE = 0x21
|
|
427
429
|
SO_RCVLOWAT = 0x10
|
|
428
430
|
SO_RCVMARK = 0x4b
|
|
431
|
+
SO_RCVPRIORITY = 0x52
|
|
429
432
|
SO_RCVTIMEO = 0x12
|
|
430
433
|
SO_RCVTIMEO_NEW = 0x42
|
|
431
434
|
SO_RCVTIMEO_OLD = 0x12
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x300
|
|
69
69
|
CSIZE = 0x300
|
|
70
70
|
CSTOPB = 0x400
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x40
|
|
@@ -418,6 +419,7 @@ const (
|
|
|
418
419
|
SO_OOBINLINE = 0xa
|
|
419
420
|
SO_PASSCRED = 0x14
|
|
420
421
|
SO_PASSPIDFD = 0x4c
|
|
422
|
+
SO_PASSRIGHTS = 0x53
|
|
421
423
|
SO_PASSSEC = 0x22
|
|
422
424
|
SO_PEEK_OFF = 0x2a
|
|
423
425
|
SO_PEERCRED = 0x15
|
|
@@ -430,6 +432,7 @@ const (
|
|
|
430
432
|
SO_RCVBUFFORCE = 0x21
|
|
431
433
|
SO_RCVLOWAT = 0x10
|
|
432
434
|
SO_RCVMARK = 0x4b
|
|
435
|
+
SO_RCVPRIORITY = 0x52
|
|
433
436
|
SO_RCVTIMEO = 0x12
|
|
434
437
|
SO_RCVTIMEO_NEW = 0x42
|
|
435
438
|
SO_RCVTIMEO_OLD = 0x12
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x300
|
|
69
69
|
CSIZE = 0x300
|
|
70
70
|
CSTOPB = 0x400
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
71
72
|
ECCGETLAYOUT = 0x41484d11
|
|
72
73
|
ECCGETSTATS = 0x40104d12
|
|
73
74
|
ECHOCTL = 0x40
|
|
@@ -418,6 +419,7 @@ const (
|
|
|
418
419
|
SO_OOBINLINE = 0xa
|
|
419
420
|
SO_PASSCRED = 0x14
|
|
420
421
|
SO_PASSPIDFD = 0x4c
|
|
422
|
+
SO_PASSRIGHTS = 0x53
|
|
421
423
|
SO_PASSSEC = 0x22
|
|
422
424
|
SO_PEEK_OFF = 0x2a
|
|
423
425
|
SO_PEERCRED = 0x15
|
|
@@ -430,6 +432,7 @@ const (
|
|
|
430
432
|
SO_RCVBUFFORCE = 0x21
|
|
431
433
|
SO_RCVLOWAT = 0x10
|
|
432
434
|
SO_RCVMARK = 0x4b
|
|
435
|
+
SO_RCVPRIORITY = 0x52
|
|
433
436
|
SO_RCVTIMEO = 0x12
|
|
434
437
|
SO_RCVTIMEO_NEW = 0x42
|
|
435
438
|
SO_RCVTIMEO_OLD = 0x12
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -350,6 +351,7 @@ const (
|
|
|
350
351
|
SO_OOBINLINE = 0xa
|
|
351
352
|
SO_PASSCRED = 0x10
|
|
352
353
|
SO_PASSPIDFD = 0x4c
|
|
354
|
+
SO_PASSRIGHTS = 0x53
|
|
353
355
|
SO_PASSSEC = 0x22
|
|
354
356
|
SO_PEEK_OFF = 0x2a
|
|
355
357
|
SO_PEERCRED = 0x11
|
|
@@ -362,6 +364,7 @@ const (
|
|
|
362
364
|
SO_RCVBUFFORCE = 0x21
|
|
363
365
|
SO_RCVLOWAT = 0x12
|
|
364
366
|
SO_RCVMARK = 0x4b
|
|
367
|
+
SO_RCVPRIORITY = 0x52
|
|
365
368
|
SO_RCVTIMEO = 0x14
|
|
366
369
|
SO_RCVTIMEO_NEW = 0x42
|
|
367
370
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -68,6 +68,7 @@ const (
|
|
|
68
68
|
CS8 = 0x30
|
|
69
69
|
CSIZE = 0x30
|
|
70
70
|
CSTOPB = 0x40
|
|
71
|
+
DM_MPATH_PROBE_PATHS = 0xfd12
|
|
71
72
|
ECCGETLAYOUT = 0x81484d11
|
|
72
73
|
ECCGETSTATS = 0x80104d12
|
|
73
74
|
ECHOCTL = 0x200
|
|
@@ -422,6 +423,7 @@ const (
|
|
|
422
423
|
SO_OOBINLINE = 0xa
|
|
423
424
|
SO_PASSCRED = 0x10
|
|
424
425
|
SO_PASSPIDFD = 0x4c
|
|
426
|
+
SO_PASSRIGHTS = 0x53
|
|
425
427
|
SO_PASSSEC = 0x22
|
|
426
428
|
SO_PEEK_OFF = 0x2a
|
|
427
429
|
SO_PEERCRED = 0x11
|
|
@@ -434,6 +436,7 @@ const (
|
|
|
434
436
|
SO_RCVBUFFORCE = 0x21
|
|
435
437
|
SO_RCVLOWAT = 0x12
|
|
436
438
|
SO_RCVMARK = 0x4b
|
|
439
|
+
SO_RCVPRIORITY = 0x52
|
|
437
440
|
SO_RCVTIMEO = 0x14
|
|
438
441
|
SO_RCVTIMEO_NEW = 0x42
|
|
439
442
|
SO_RCVTIMEO_OLD = 0x14
|
|
@@ -71,6 +71,7 @@ const (
|
|
|
71
71
|
CS8 = 0x30
|
|
72
72
|
CSIZE = 0x30
|
|
73
73
|
CSTOPB = 0x40
|
|
74
|
+
DM_MPATH_PROBE_PATHS = 0x2000fd12
|
|
74
75
|
ECCGETLAYOUT = 0x41484d11
|
|
75
76
|
ECCGETSTATS = 0x40104d12
|
|
76
77
|
ECHOCTL = 0x200
|
|
@@ -461,6 +462,7 @@ const (
|
|
|
461
462
|
SO_OOBINLINE = 0x100
|
|
462
463
|
SO_PASSCRED = 0x2
|
|
463
464
|
SO_PASSPIDFD = 0x55
|
|
465
|
+
SO_PASSRIGHTS = 0x5c
|
|
464
466
|
SO_PASSSEC = 0x1f
|
|
465
467
|
SO_PEEK_OFF = 0x26
|
|
466
468
|
SO_PEERCRED = 0x40
|
|
@@ -473,6 +475,7 @@ const (
|
|
|
473
475
|
SO_RCVBUFFORCE = 0x100b
|
|
474
476
|
SO_RCVLOWAT = 0x800
|
|
475
477
|
SO_RCVMARK = 0x54
|
|
478
|
+
SO_RCVPRIORITY = 0x5b
|
|
476
479
|
SO_RCVTIMEO = 0x2000
|
|
477
480
|
SO_RCVTIMEO_NEW = 0x44
|
|
478
481
|
SO_RCVTIMEO_OLD = 0x2000
|
|
@@ -72,7 +72,7 @@ import (
|
|
|
72
72
|
//go:cgo_import_dynamic libc_kill kill "libc.so"
|
|
73
73
|
//go:cgo_import_dynamic libc_lchown lchown "libc.so"
|
|
74
74
|
//go:cgo_import_dynamic libc_link link "libc.so"
|
|
75
|
-
//go:cgo_import_dynamic
|
|
75
|
+
//go:cgo_import_dynamic libc___xnet_listen __xnet_listen "libsocket.so"
|
|
76
76
|
//go:cgo_import_dynamic libc_lstat lstat "libc.so"
|
|
77
77
|
//go:cgo_import_dynamic libc_madvise madvise "libc.so"
|
|
78
78
|
//go:cgo_import_dynamic libc_mkdir mkdir "libc.so"
|
|
@@ -221,7 +221,7 @@ import (
|
|
|
221
221
|
//go:linkname procKill libc_kill
|
|
222
222
|
//go:linkname procLchown libc_lchown
|
|
223
223
|
//go:linkname procLink libc_link
|
|
224
|
-
//go:linkname
|
|
224
|
+
//go:linkname proc__xnet_listen libc___xnet_listen
|
|
225
225
|
//go:linkname procLstat libc_lstat
|
|
226
226
|
//go:linkname procMadvise libc_madvise
|
|
227
227
|
//go:linkname procMkdir libc_mkdir
|
|
@@ -371,7 +371,7 @@ var (
|
|
|
371
371
|
procKill,
|
|
372
372
|
procLchown,
|
|
373
373
|
procLink,
|
|
374
|
-
|
|
374
|
+
proc__xnet_listen,
|
|
375
375
|
procLstat,
|
|
376
376
|
procMadvise,
|
|
377
377
|
procMkdir,
|
|
@@ -1178,7 +1178,7 @@ func Link(path string, link string) (err error) {
|
|
|
1178
1178
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
|
1179
1179
|
|
|
1180
1180
|
func Listen(s int, backlog int) (err error) {
|
|
1181
|
-
_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&
|
|
1181
|
+
_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_listen)), 2, uintptr(s), uintptr(backlog), 0, 0, 0, 0)
|
|
1182
1182
|
if e1 != 0 {
|
|
1183
1183
|
err = errnoErr(e1)
|
|
1184
1184
|
}
|