Interface: Config

ldap.Config

Config is extra configuration for the ldap client

Example

const ldap = require('nuclei/ldap');
const cfg = new ldap.Config();
cfg.Timeout = 10;
cfg.ServerName = 'ldap.internal.acme.com';
cfg.Upgrade = true; // upgrade to tls

Table of contents

Properties

Properties

ServerName

Optional ServerName: string

Defined in

ldap.ts:530


Timeout

Optional Timeout: number

Timeout is the timeout for the ldap client in seconds

Defined in

ldap.ts:528


Upgrade

Optional Upgrade: boolean

Defined in

ldap.ts:532