blob: 5d0c60426edb488a9228fef69ae4e3ecb479b179 [file] [log] [blame]
Ivan Kluchnikov60437182012-05-24 22:07:15 +04001/* gprs_debug.h
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#ifndef GPRS_DEBUG_H
21#define GPRS_DEBUG_H
22
23#include <stdio.h>
24extern "C" {
25#include <osmocom/core/linuxlist.h>
26#include <osmocom/core/logging.h>
27};
28/* Debug Areas of the code */
29enum {
30 DCSN1,
31 DL1IF,
32 DRLCMAC,
33 DRLCMACDATA,
Andreas Eversberg5dac2f02012-06-27 15:52:04 +020034 DRLCMACSCHED,
Ivan Kluchnikov60437182012-05-24 22:07:15 +040035 DBSSGP,
36 DPCU,
37 aDebug_LastEntry
38};
39
40/* context */
41#define BSC_CTX_SUBSCR 1
42#define BSC_CTX_NSVC 4
43#define BSC_CTX_BVC 5
44
45/* target */
46
47enum {
48 //DEBUG_FILTER_ALL = 1 << 0,
49 LOG_FILTER_IMSI = 1 << 1,
50 LOG_FILTER_NSVC = 1 << 2,
51 LOG_FILTER_BVC = 1 << 3,
52};
53
54/* we don't need a header dependency for this... */
55
56struct gprs_nsvc;
57struct bssgp_bvc_ctx;
58
59void log_set_imsi_filter(struct log_target *target, const char *imsi);
60void log_set_nsvc_filter(struct log_target *target,
61 struct gprs_nsvc *nsvc);
62void log_set_bvc_filter(struct log_target *target,
63 struct bssgp_bvc_ctx *bctx);
64
65extern const struct log_info gprs_log_info;
66
67
68
69#endif // GPRS_DEBUG_H