aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2010-07-13 01:32:39 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2010-08-13 22:22:22 +0800
commit268f91e2666922f1a7ced025d0a69956a7257e73 (patch)
tree9f5c871cad603bdb1e133a87000365553ff7a7c4
parentc41523ab7160693a91640a68f309d5266c5708ad (diff)
downloadgsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar.gz
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar.bz2
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar.lz
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar.xz
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.tar.zst
gsoc2013-empathy-268f91e2666922f1a7ced025d0a69956a7257e73.zip
Add a debug flag for TLS
-rw-r--r--libempathy/empathy-debug.c1
-rw-r--r--libempathy/empathy-debug.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-debug.c b/libempathy/empathy-debug.c
index 1f29259fd..dd507bc42 100644
--- a/libempathy/empathy-debug.c
+++ b/libempathy/empathy-debug.c
@@ -52,6 +52,7 @@ static GDebugKey keys[] = {
{ "ImportMc4Accounts", EMPATHY_DEBUG_IMPORT_MC4_ACCOUNTS },
{ "Tests", EMPATHY_DEBUG_TESTS },
{ "Voip", EMPATHY_DEBUG_VOIP },
+ { "Tls", EMPATHY_DEBUG_TLS },
{ 0, }
};
diff --git a/libempathy/empathy-debug.h b/libempathy/empathy-debug.h
index 0a5c3f697..ece3af73c 100644
--- a/libempathy/empathy-debug.h
+++ b/libempathy/empathy-debug.h
@@ -46,6 +46,7 @@ typedef enum
EMPATHY_DEBUG_IMPORT_MC4_ACCOUNTS = 1 << 11,
EMPATHY_DEBUG_TESTS = 1 << 12,
EMPATHY_DEBUG_VOIP = 1 << 13,
+ EMPATHY_DEBUG_TLS = 1 << 14,
} EmpathyDebugFlags;
gboolean empathy_debug_flag_is_set (EmpathyDebugFlags flag);