/src/cm/chk/checkSock.cpp

https://github.com/ALTIBASE/altibase · C++ · 53 lines · 27 code · 11 blank · 15 comment · 5 complexity · 0e05738ce0257d70b00cf5aaf3ba6496 MD5 · raw file

  1. /**
  2. * Copyright (c) 1999~2017, Altibase Corp. and/or its affiliates. All rights reserved.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License, version 3,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU Lesser General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Lesser General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include <cmAll.h>
  17. #define CHECK(expr) \
  18. if (!(expr)) \
  19. { \
  20. idlOS::fprintf(stderr, \
  21. "SOCK CHECK FAILED at %s:%d `%s'\n", \
  22. __FILE__, \
  23. __LINE__, \
  24. #expr); \
  25. exit(1); \
  26. }
  27. int main()
  28. {
  29. #if !defined(CM_DISABLE_TCP) || !defined(CM_DISABLE_UNIX)
  30. #if defined(MSG_PEEK)
  31. CHECK(MSG_PEEK != 0);
  32. #endif
  33. #if defined(MSG_DONTWAIT)
  34. CHECK(MSG_DONTWAIT != 0);
  35. #endif
  36. #if defined(MSG_NONBLOCK)
  37. CHECK(MSG_NONBLOCK != 0);
  38. #endif
  39. #endif
  40. idlOS::fprintf(stderr, "SOCK CHECK SUCCEEDED.\n");
  41. return 0;
  42. }