]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/CyaSSL/cyassl/ctaocrypt/logging.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS-Plus / CyaSSL / cyassl / ctaocrypt / logging.h
1 /* logging.h
2  *
3  * Copyright (C) 2006-2012 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
22 /* submitted by eof */
23
24
25 #ifndef CYASSL_LOGGING_H
26 #define CYASSL_LOGGING_H
27
28
29 #ifdef __cplusplus
30     extern "C" {
31 #endif
32
33
34 enum  CYA_Log_Levels {
35     ERROR_LOG = 0,
36     INFO_LOG,
37     ENTER_LOG,
38     LEAVE_LOG,
39     OTHER_LOG
40 };
41
42 typedef void (*CyaSSL_Logging_cb)(const int logLevel,
43                                   const char *const logMessage);
44
45 CYASSL_API int CyaSSL_SetLoggingCb(CyaSSL_Logging_cb log_function);
46
47
48 #ifdef DEBUG_CYASSL
49
50     void CYASSL_ENTER(const char* msg);
51     void CYASSL_LEAVE(const char* msg, int ret);
52
53     void CYASSL_ERROR(int);
54     void CYASSL_MSG(const char* msg);
55
56 #else /* DEBUG_CYASSL   */
57
58     #define CYASSL_ENTER(m)
59     #define CYASSL_LEAVE(m, r)
60
61     #define CYASSL_ERROR(e) 
62     #define CYASSL_MSG(m)
63
64 #endif /* DEBUG_CYASSL  */
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 #endif /* CYASSL_MEMORY_H */