diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-03-05 21:36:50 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-05 21:36:50 +0000 |
commit | c72f163bcae7335ae11824cd91e382ebf0cc9e82 (patch) | |
tree | 9c5fb9edf340bfcb255eb60578351f117a1a458e /pkg/tcpip/stack | |
parent | 9a23cf9a374741d281e6e3635b828e94807d63c5 (diff) | |
parent | 498709250a134d4d09a22d11cffdfdc402d9f052 (diff) |
Merge release-20210301.0-18-g498709250 (automated)
Diffstat (limited to 'pkg/tcpip/stack')
-rw-r--r-- | pkg/tcpip/stack/registration.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/registration.go b/pkg/tcpip/stack/registration.go index 426342fd2..85f0f471a 100644 --- a/pkg/tcpip/stack/registration.go +++ b/pkg/tcpip/stack/registration.go @@ -884,7 +884,11 @@ func (*DADAborted) isDADResult() {} var _ DADResult = (*DADDupAddrDetected)(nil) // DADDupAddrDetected indicates DAD detected a duplicate address. -type DADDupAddrDetected struct{} +type DADDupAddrDetected struct { + // HolderLinkAddress is the link address of the node that holds the duplicate + // address. + HolderLinkAddress tcpip.LinkAddress +} func (*DADDupAddrDetected) isDADResult() {} |