mirror of
https://github.com/mandiant/gopacket
synced 2026-06-21 13:57:02 +00:00
ce5ca7f159
Fixes #6. The module was declared as `module gopacket` in go.mod, which is not a canonical import path. External projects could not `go get github.com/mandiant/gopacket` to use any of the 24 protocol packages as a library; the only workaround was to clone the repo and add a `replace` directive to their own go.mod. This commit: - Sets `module github.com/mandiant/gopacket` in go.mod. - Rewrites 434 import statements across 157 files from the bare `gopacket/...` prefix to `github.com/mandiant/gopacket/...`. Pure mechanical change, no behavior difference. Makes the README's library story (pkg/ directory, 24 reusable packages) actually usable from external code.
37 lines
1.2 KiB
Modula-2
37 lines
1.2 KiB
Modula-2
module github.com/mandiant/gopacket
|
|
|
|
go 1.24.13
|
|
|
|
require (
|
|
github.com/chzyer/readline v1.5.1
|
|
github.com/geoffgarside/ber v1.1.0
|
|
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667
|
|
github.com/go-ldap/ldap/v3 v3.4.12
|
|
github.com/google/gopacket v1.1.19
|
|
github.com/google/uuid v1.6.0
|
|
github.com/jcmturner/gofork v1.7.6
|
|
github.com/jcmturner/gokrb5/v8 v8.4.4
|
|
github.com/oiweiwei/go-msrpc v1.2.12
|
|
github.com/oiweiwei/gokrb5.fork/v9 v9.0.6
|
|
github.com/rs/zerolog v1.32.0
|
|
golang.org/x/crypto v0.36.0
|
|
golang.org/x/net v0.38.0
|
|
golang.org/x/term v0.39.0
|
|
golang.org/x/text v0.23.0
|
|
software.sslmate.com/src/go-pkcs12 v0.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/hashicorp/go-uuid v1.0.3 // indirect
|
|
github.com/indece-official/go-ebcdic v1.2.0 // indirect
|
|
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
|
|
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
|
|
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
|
|
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/oiweiwei/go-smb2.fork v1.0.0 // indirect
|
|
golang.org/x/sys v0.40.0 // indirect
|
|
)
|