From: Jonathan Bastien-Filiatrault Date: Tue, 4 Aug 2009 01:43:17 +0000 (-0400) Subject: Define _gnutls_dtls_log for DTLS. X-Git-Tag: gnutls_2_99_0~244 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c83e30404d4c84df703e64302a57ea0f3fc0edd0;p=thirdparty%2Fgnutls.git Define _gnutls_dtls_log for DTLS. Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/lib/gnutls_errors.h b/lib/gnutls_errors.h index 095a08401f..54440423ef 100644 --- a/lib/gnutls_errors.h +++ b/lib/gnutls_errors.h @@ -65,6 +65,7 @@ _gnutls_log (int, const char *fmt, ...) #define _gnutls_buffers_log(...) LEVEL_EQ(6, __VA_ARGS__) #define _gnutls_hard_log(...) LEVEL(9, __VA_ARGS__) #define _gnutls_record_log(...) LEVEL(4, __VA_ARGS__) +# define _gnutls_dtls_log(...) LEVEL(6, __VA_ARGS__) #define _gnutls_read_log(...) LEVEL_EQ(7, __VA_ARGS__) #define _gnutls_write_log(...) LEVEL_EQ(7, __VA_ARGS__) #define _gnutls_x509_log(...) LEVEL(1, __VA_ARGS__) @@ -75,6 +76,7 @@ _gnutls_log (int, const char *fmt, ...) #define _gnutls_buffers_log _gnutls_null_log #define _gnutls_hard_log _gnutls_null_log #define _gnutls_record_log _gnutls_null_log +# define _gnutls_dtls_log _gnutls_null_log #define _gnutls_read_log _gnutls_null_log #define _gnutls_write_log _gnutls_null_log #define _gnutls_x509_log _gnutls_null_log