-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (20 loc) · 685 Bytes
/
Copy pathgo.mod
File metadata and controls
24 lines (20 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/mdlayher/netlink
go 1.25.0
retract (
// contains a bug where `netlink.Conn.Receive` blocks concurrent calls to
// `netlink.Conn.Send` when blocking in `recvmsg`.
v1.11.1
// contains a bug where `netlink.Conn.Receive` and `netlink.Conn.ReceiveIter` reject
// valid netlink messages whose header length is not aligned.
v1.11.0
// contains a critical bug where `netlink.Conn.Receive` and `netlink.Conn.ReceiveIter`
// would panic if the received message was unaligned.
v1.10.0
)
require (
github.com/google/go-cmp v0.7.0
github.com/mdlayher/socket v0.6.1
golang.org/x/net v0.57.0
golang.org/x/sys v0.47.0
)
require golang.org/x/sync v0.20.0 // indirect