summaryrefslogtreecommitdiff
path: root/test/netstd
diff options
context:
space:
mode:
authorKyle Smith <ksmith@jrautomation.com>2019-03-15 07:27:15 -0400
committerJens Geyer <jensg@apache.org>2019-03-15 22:55:26 +0100
commit6378ff69a624594dc4552076c9a24c5ae81b97a5 (patch)
tree521c0ee11c824d35fe67caf9c2cb52e737f661af /test/netstd
parentb11f63c552b8ad47b23931177987ada0a92188cf (diff)
downloadthrift-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.cs2
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;