summaryrefslogtreecommitdiff
path: root/tutorial/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 /tutorial/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 'tutorial/netstd')
-rw-r--r--tutorial/netstd/Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/netstd/Server/Program.cs b/tutorial/netstd/Server/Program.cs
index d27e90d24..e74a04217 100644
--- a/tutorial/netstd/Server/Program.cs
+++ b/tutorial/netstd/Server/Program.cs
@@ -159,7 +159,7 @@ Sample:
serverTransport = new TNamedPipeServerTransport(".test");
break;
case Transport.TcpTls:
- serverTransport = new TTlsServerSocketTransport(9090, Buffering.None, GetCertificate(), ClientCertValidator, LocalCertificateSelectionCallback);
+ serverTransport = new TTlsServerSocketTransport(9090, GetCertificate(), Buffering.None, ClientCertValidator, LocalCertificateSelectionCallback);
break;
case Transport.Framed:
serverTransport = new TServerFramedTransport(9090);