mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
refactor complete
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type NetworkInterfaceType = "ethernet" | "wireless" | "wireguard"
|
||||
export type NetworkInterfaceType =
|
||||
| "ethernet"
|
||||
| "wireless"
|
||||
| "bridge"
|
||||
| "wireguard"
|
||||
| "loopback"
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { AnyVerifyingKey } from "./AnyVerifyingKey"
|
||||
import type { ContactInfo } from "./ContactInfo"
|
||||
|
||||
export type SignerInfo = { name: string }
|
||||
export type SignerInfo = {
|
||||
name: string
|
||||
contact: Array<ContactInfo>
|
||||
keys: Array<AnyVerifyingKey>
|
||||
}
|
||||
|
||||
@@ -80,6 +80,8 @@ export const PRIVATE_IPV4_RANGES = [
|
||||
new IpNet("192.168.0.0/16"),
|
||||
]
|
||||
|
||||
export const IPV4_LOOPBACK = new IpNet("127.0.0.0/8")
|
||||
export const IPV6_LOOPBACK = new IpNet("::1/128")
|
||||
export const IPV6_LINK_LOCAL = new IpNet("fe80::/10")
|
||||
|
||||
export const CGNAT = new IpNet("100.64.0.0/10")
|
||||
|
||||
Reference in New Issue
Block a user