diff options
Diffstat (limited to 'csharp/test/IceSSL/configuration/Test.ice')
-rw-r--r-- | csharp/test/IceSSL/configuration/Test.ice | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/csharp/test/IceSSL/configuration/Test.ice b/csharp/test/IceSSL/configuration/Test.ice new file mode 100644 index 00000000000..efbf4f2417f --- /dev/null +++ b/csharp/test/IceSSL/configuration/Test.ice @@ -0,0 +1,31 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#pragma once + +module Test +{ + +interface Server +{ + void noCert(); + void checkCert(string subjectDN, string issuerDN); + void checkCipher(string cipher); +}; + +dictionary<string, string> Properties; + +interface ServerFactory +{ + Server* createServer(Properties props); + void destroyServer(Server* srv); + void shutdown(); +}; + +}; |