Files
bird_config/bird/function/inet.conf
gaoyuheng 0850e27324 Reapply "debug"
This reverts commit 682fb1b033.
2026-04-18 16:46:58 +08:00

7 lines
244 B
Plaintext

function is_self_net() {
case net.type {
NET_IP4: return net ~ is_inet_self_IPv4;
NET_IP6: return net ~ is_inet_self_IPv6;
else: print "is_inet_prefix: unexpected net.type ", net.type, " ", net; return false;
}
}