diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/misc.texi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi index 24586eb2813..177cc8fa469 100644 --- a/doc/emacs/misc.texi +++ b/doc/emacs/misc.texi | |||
| @@ -402,6 +402,22 @@ This means that one can't casually read the settings file to see what | |||
| 402 | servers the user has connected to. If this variable is @code{t}, | 402 | servers the user has connected to. If this variable is @code{t}, |
| 403 | @acronym{NSM} will also save host names in the | 403 | @acronym{NSM} will also save host names in the |
| 404 | @code{nsm-settings-file}. | 404 | @code{nsm-settings-file}. |
| 405 | |||
| 406 | @item network-security-protocol-checks | ||
| 407 | @vindex network-security-protocol-checks | ||
| 408 | The protocol network checks (mostly for @acronym{TLS} weaknesses) is | ||
| 409 | controlled via the @code{network-security-protocol-checks} variable. | ||
| 410 | |||
| 411 | It's an alist where the first element is the name of the check, | ||
| 412 | the second is the security level where the check kicks in, and the | ||
| 413 | optional third element is a parameter supplied to the check. | ||
| 414 | |||
| 415 | An element like @code{(rc4 medium)} will result in the function | ||
| 416 | @code{nsm-protocol-check--rc4} being called like thus: | ||
| 417 | @code{(nsm-protocol-check--rc4 host port status optional-parameter)}. | ||
| 418 | The function should return non-@code{nil} if the connection should | ||
| 419 | proceed and @code{nil} otherwise. | ||
| 420 | |||
| 405 | @end table | 421 | @end table |
| 406 | 422 | ||
| 407 | 423 | ||