openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
10 lines (9 loc) • 335 B
TypeScript
/** Host/network allowlist policy forwarded to the runtime SSRF guard. */
export type SsrFPolicy = {
allowPrivateNetwork?: boolean;
dangerouslyAllowPrivateNetwork?: boolean;
allowRfc2544BenchmarkRange?: boolean;
allowIpv6UniqueLocalRange?: boolean;
allowedHostnames?: string[];
hostnameAllowlist?: string[];
};