diff options
author | Jack Lloyd <[email protected]> | 2017-02-07 09:45:14 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-02-19 10:21:47 -0500 |
commit | ebe32d7687aa9284003aa322c82d3ad2c7e8673b (patch) | |
tree | 72e503cf1fe29cdbb83202705201ad9d9454f2cc /doc | |
parent | 5b7c0aba50abf70ac081277141aaf375e4d8373d (diff) |
Add TLS::Policy::allow_client_initiated_renegotiation
Parallel of the server policy flag.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/tls.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/manual/tls.rst b/doc/manual/tls.rst index 8d9a6fb12..02ed1e611 100644 --- a/doc/manual/tls.rst +++ b/doc/manual/tls.rst @@ -953,6 +953,14 @@ policy settings from a file. Default: false + .. cpp:function:: bool allow_client_initiated_renegotiation() const + + If this function returns true, a server will accept a + client-initiated renegotiation attempt. Otherwise it will send + the client a non-fatal ``no_renegotiation`` alert. + + Default: true + .. cpp:function:: bool allow_server_initiated_renegotiation() const If this function returns true, a client will accept a |