blob: 8bedfe4b37f7f58755b46d25e8a69970b56b7db6 [file] [log] [blame]
Lorenz Brun4bde9312025-08-06 05:04:11 +02001// Copyright The Monogon Project Authors.
2// SPDX-License-Identifier: Apache-2.0
3
4package node
5
6import "net"
7
8// NetStatus is the current network status of the host. It will be updated by the
9// network Service whenever the node's network configuration changes. Spurious
10// changes might occur, consumers should ensure that the change that occured is
11// meaningful to them.
12type NetStatus struct {
13 ExternalAddress net.IP
14}