summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/hello/Server.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-16 23:45:16 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-16 23:45:16 +0000
commitcb721b45d761ccb7fa3bb873e3d567dd665b1f9f (patch)
tree75bd19e8d32751ff178093f47b4ce87e83d4b6d0 /cpp/demo/Ice/hello/Server.cpp
parentalign with C++ - fixes for the thread pool (diff)
downloadice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.tar.bz2
ice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.tar.xz
ice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.zip
IcePatch improvements; Ice.PrintAdapterReady timing fix
Diffstat (limited to 'cpp/demo/Ice/hello/Server.cpp')
-rw-r--r--cpp/demo/Ice/hello/Server.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/demo/Ice/hello/Server.cpp b/cpp/demo/Ice/hello/Server.cpp
index 9bd89667365..df1e6b22ba3 100644
--- a/cpp/demo/Ice/hello/Server.cpp
+++ b/cpp/demo/Ice/hello/Server.cpp
@@ -9,7 +9,6 @@
// **********************************************************************
#include <Ice/Ice.h>
-#include <Ice/System.h>
#include <HelloI.h>
using namespace std;
@@ -18,10 +17,6 @@ int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("HelloAdapter");
-
- IceSSL::SystemPtr sslSystem = communicator->getSslSystem();
- sslSystem->configure(IceSSL::Server);
-
Ice::ObjectPtr object = new HelloI(communicator);
adapter->add(object, Ice::stringToIdentity("hello"));
adapter->activate();