aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-05-23 06:42:38 +0000
committerHarald Welte <laforge@gnumonks.org>2009-05-23 06:42:38 +0000
commitc125a680efcc2de2958e0c36e3b6aac1b61ed909 (patch)
tree34c4d504cbae8535b5e017398e5e95045cbba3cc /include/openbsc
parenta4d49e96ab45b12fe581d6ab3cecd0727bccb317 (diff)
A new debug flag is introduced: "DMNCC". MNCC is the Mobile Network Call
Control. This is required for later patches, that extract the call control from gsm_04_08.c. (Andreas Eversberg)
Diffstat (limited to 'include/openbsc')
-rw-r--r--include/openbsc/debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/openbsc/debug.h b/include/openbsc/debug.h
index 626bcf545..995a0f8e3 100644
--- a/include/openbsc/debug.h
+++ b/include/openbsc/debug.h
@@ -10,6 +10,7 @@
#define DRSL 0x0010
#define DNM 0x0020
+#define DMNCC 0x0080
#define DSMS 0x0100
#define DPAG 0x0200
@@ -32,6 +33,6 @@ char *hexdump(unsigned char *buf, int len);
void debugp(unsigned int subsys, char *file, int line, int cont, const char *format, ...);
void debug_parse_category_mask(const char* mask);
void debug_use_color(int use_color);
-unsigned int debug_mask;
+extern unsigned int debug_mask;
#endif /* _DEBUG_H */