diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-06-27 17:54:30 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-06-27 17:54:30 +0200 |
commit | c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7 (patch) | |
tree | 5cb64dfe155e5d2349efb6c7dc4b0f5b5284d44a /cpp/src/IcePatch2/Server.cpp | |
parent | Fix Windows php build to restore nuget packages (diff) | |
download | ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.bz2 ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.xz ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.zip |
Refactored SSL and iAP transports, support for running SSL on top
of TCP/iAP/Bluetooth.
Diffstat (limited to 'cpp/src/IcePatch2/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index f0d0dc21b32..b559a091796 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -53,7 +53,7 @@ IcePatch2::PatcherService::start(int argc, char* argv[], int& status) IceUtilInternal::Options opts; opts.addOpt("h", "help"); opts.addOpt("v", "version"); - + vector<string> args; try { @@ -109,7 +109,7 @@ IcePatch2::PatcherService::start(int argc, char* argv[], int& status) { throw "cannot get the current directory:\n" + IceUtilInternal::lastErrorToString(); } - + dataDir = cwd + '/' + dataDir; } @@ -125,7 +125,7 @@ IcePatch2::PatcherService::start(int argc, char* argv[], int& status) error(ex); return false; } - + const string endpointsProperty = "IcePatch2.Endpoints"; string endpoints = properties->getProperty(endpointsProperty); if(endpoints.empty()) |