blob: ca8482962a08a952e032dd0663269d3b38b45f8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright (c) 2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
namespace Swift {
struct TLSOptions {
TLSOptions() : schannelTLS1_0Workaround(false) {
}
/**
* A bug in the Windows SChannel TLS stack, combined with
* overly-restrictive server stacks means it's sometimes necessary to
* not use TLS>1.0. This option has no effect unless compiled on
* Windows against SChannel (OpenSSL users are unaffected).
*/
bool schannelTLS1_0Workaround;
};
}
|