This is a port of cyaSSL 2.7.0.

Dependents:   CyaSSL_DTLS_Cellular CyaSSL_DTLS_Ethernet

Committer:
ashleymills
Date:
Thu Sep 05 15:55:50 2013 +0000
Revision:
1:c0ce1562443a
Parent:
0:714293de3836
Nothing;

Who changed what in which revision?

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