diff options
author | Kyle Smith <ksmith@jrautomation.com> | 2019-03-15 07:27:15 -0400 |
---|---|---|
committer | Jens Geyer <jensg@apache.org> | 2019-03-15 22:55:26 +0100 |
commit | 6378ff69a624594dc4552076c9a24c5ae81b97a5 (patch) | |
tree | 521c0ee11c824d35fe67caf9c2cb52e737f661af /test/netstd | |
parent | b11f63c552b8ad47b23931177987ada0a92188cf (diff) | |
download | thrift-6378ff69a624594dc4552076c9a24c5ae81b97a5.tar.gz |
THRIFT-4825 Aligned the TTlsSocketServerTransport constructors with the TSocketServerTransport
Client: C#
Patch: Kyle Smith <ksmith@jrautomation.com>
This closes #1762
Diffstat (limited to 'test/netstd')
-rw-r--r-- | test/netstd/Server/TestServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/netstd/Server/TestServer.cs b/test/netstd/Server/TestServer.cs index 8db92dc59..d15ca71c8 100644 --- a/test/netstd/Server/TestServer.cs +++ b/test/netstd/Server/TestServer.cs @@ -560,7 +560,7 @@ namespace ThriftTest } transFactory = new TTransportFactory(); // framed/buffered is built into socket transports - trans = new TTlsServerSocketTransport( param.port, param.buffering, cert, + trans = new TTlsServerSocketTransport( param.port, cert, param.buffering, (sender, certificate, chain, errors) => true, null, SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12); break; |