Minor docs updates

This commit is contained in:
Patrick Mooney 2015-10-27 22:02:56 -05:00
parent bdbff63bc0
commit 954231d358
2 changed files with 4 additions and 5 deletions

View File

@ -27,10 +27,10 @@ client is:
|url |A valid LDAP URL (proto/host/port only) | |url |A valid LDAP URL (proto/host/port only) |
|socketPath |Socket path if using AF\_UNIX sockets | |socketPath |Socket path if using AF\_UNIX sockets |
|log |Bunyan logger instance (Default: built-in instance) | |log |Bunyan logger instance (Default: built-in instance) |
|timeout |How long the client should let operations live for before timing out (Default: Infinity)| |timeout |Milliseconds client should let operations live for before timing out (Default: Infinity)|
|connectTimeout |How long the client should wait before timing out on TCP connections (Default: OS default)| |connectTimeout |Milliseconds client should wait before timing out on TCP connections (Default: OS default)|
|tlsOptions |Additional options passed to the TLS connection layer when connecting via `ldaps://` (See: The TLS docs for node.js)| |tlsOptions |Additional options passed to TLS connection layer when connecting via `ldaps://` (See: The TLS docs for node.js)|
|idleTimeout |Seconds after last activity before client emits idle event| |idleTimeout |Milliseconds after last activity before client emits idle event|
|strictDN |Force strict DN parsing for client methods (Default is true)| |strictDN |Force strict DN parsing for client methods (Default is true)|
## Connection management ## Connection management

View File

@ -83,7 +83,6 @@ Specifically:
* LDIF * LDIF
* Aliases * Aliases
* Attributes by OID * Attributes by OID
* TLS extended operation (seriously, just use SSL)
* Extensible matching * Extensible matching
There are a few others, but those are the "big" ones. There are a few others, but those are the "big" ones.