diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2018-03-30 09:22:48 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2018-04-05 10:46:43 +0200 |
commit | e5172dff9bcf8c2de8426a74fbddbe3bbf1851e4 (patch) | |
tree | 5c7d5783192dea588bd06964b7c1e76e1e28e23c /server/spice-server.syms | |
parent | 89f0dfa01ed2ab8c2a2b0067ecd4a3d17fc67191 (diff) |
Add public spice_server_set_tls_options() methodtls-min-version
Its main goal is to allow to set the minimum TLS version that we want
spice-server to use. By default we limit ourselves to TLSv1.1 or newer
connections. By using this API, one can configure spice-server to accept
TLSv1.0 connections too, or on the contrary it can restrict connections
to TLSv1.2-only.
The other arguments are redundant with the ones already present in
spice_server_set_tls(). However, tying this with the setting of the TLS
port is a bit odd if one day we want to support multiple TLS ports.
Diffstat (limited to 'server/spice-server.syms')
-rw-r--r-- | server/spice-server.syms | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/spice-server.syms b/server/spice-server.syms index edf04a42..90d5ee84 100644 --- a/server/spice-server.syms +++ b/server/spice-server.syms @@ -173,3 +173,8 @@ SPICE_SERVER_0.13.2 { global: spice_server_set_video_codecs; } SPICE_SERVER_0.13.1; + +SPICE_SERVER_0.14.1 { +global: + spice_server_set_tls_options; +} SPICE_SERVER_0.13.2; |