1
0

cyassl_logging.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* cyassl_logging.h
  2. *
  3. * Copyright (C) 2006-2011 Sawtooth Consulting Ltd.
  4. *
  5. * This file is part of CyaSSL.
  6. *
  7. * CyaSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * CyaSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  20. */
  21. /* submitted by eof */
  22. #ifndef CYASSL_LOGGING_H
  23. #define CYASSL_LOGGING_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. enum CYA_Log_Levels {
  28. ERROR_LOG = 0,
  29. INFO_LOG,
  30. ENTER_LOG,
  31. LEAVE_LOG,
  32. OTHER_LOG
  33. };
  34. typedef void (*CyaSSL_Logging_cb)(const int logLevel,
  35. const char *const logMessage);
  36. CYASSL_API int CyaSSL_SetLoggingCb(CyaSSL_Logging_cb log_function);
  37. #ifdef DEBUG_CYASSL
  38. void CYASSL_ENTER(const char* msg);
  39. void CYASSL_LEAVE(const char* msg, int ret);
  40. void CYASSL_ERROR(int);
  41. void CYASSL_MSG(const char* msg);
  42. #else /* DEBUG_CYASSL */
  43. #define CYASSL_ENTER(m)
  44. #define CYASSL_LEAVE(m, r)
  45. #define CYASSL_ERROR(e)
  46. #define CYASSL_MSG(m)
  47. #endif /* DEBUG_CYASSL */
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif /* CYASSL_MEMORY_H */