SSLServer.cpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #include "SSLServer.h"
  17. #include "SSLImp.h"
  18. using namespace std;
  19. SSLServer g_app;
  20. /////////////////////////////////////////////////////////////////
  21. void
  22. SSLServer::initialize()
  23. {
  24. //initialize application here:
  25. //...
  26. addServant<SSLImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".SSLObj");
  27. addServant<SSLImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".SSL1Obj");
  28. addServant<SSLImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".SSL2Obj");
  29. addServant<SSLImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".SSL3Obj");
  30. }
  31. /////////////////////////////////////////////////////////////////
  32. void
  33. SSLServer::destroyApp()
  34. {
  35. //destroy application here:
  36. //...
  37. }
  38. /////////////////////////////////////////////////////////////////
  39. int
  40. main(int argc, char* argv[])
  41. {
  42. try
  43. {
  44. g_app.main(argc, argv);
  45. g_app.waitForShutdown();
  46. }
  47. catch (std::exception& e)
  48. {
  49. cerr << "std::exception:" << e.what() << std::endl;
  50. }
  51. catch (...)
  52. {
  53. cerr << "unknown exception." << std::endl;
  54. }
  55. return -1;
  56. }
  57. /////////////////////////////////////////////////////////////////