pmcf 2.47.1 → 2.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/subnet.mjs +1 -0
- package/types/subnet.d.mts +1 -0
package/package.json
CHANGED
package/src/subnet.mjs
CHANGED
|
@@ -89,6 +89,7 @@ export const SUBNET_GLOBAL_IPV4 = new Subnet(_owner, "0.0.0.0/0");
|
|
|
89
89
|
export const SUBNET_GLOBAL_IPV6 = new Subnet(_owner, "::0/0");
|
|
90
90
|
export const SUBNET_LOCALHOST_IPV4 = new Subnet(_owner, "127.0.0.1/8");
|
|
91
91
|
export const SUBNET_LOCALHOST_IPV6 = new Subnet(_owner, "::1/128");
|
|
92
|
+
export const SUBNET_LINK_LOCAL_IPV6 = new Subnet(_owner, "fe80::/64");
|
|
92
93
|
|
|
93
94
|
export function subnets(sources) {
|
|
94
95
|
const all = new Set();
|
package/types/subnet.d.mts
CHANGED