24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
export namespace dns {
|
|
export interface AddressTarget {
|
|
target_ip: string;
|
|
target_port?: number;
|
|
}
|
|
|
|
export interface ResolveOptions {
|
|
timeout?: number;
|
|
allow_cache?: boolean;
|
|
max_depth?: number;
|
|
|
|
allow_srv?: boolean;
|
|
allow_cname?: boolean;
|
|
allow_any?: boolean;
|
|
allow_a?: boolean;
|
|
allow_aaaa?: boolean;
|
|
}
|
|
|
|
export const default_options: ResolveOptions = {
|
|
timeout: 5000,
|
|
allow_cache: true,
|
|
max_depth: 5
|
|
};
|
|
} |