blob: abd5d95a95ef5984f7e638916482249f0cbf7700 [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>
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010024#ifdef __cplusplus
Ivan Kluchnikov60437182012-05-24 22:07:15 +040025extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010026#endif
Ivan Kluchnikov60437182012-05-24 22:07:15 +040027#include <osmocom/core/linuxlist.h>
28#include <osmocom/core/logging.h>
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010029#ifdef __cplusplus
Ivan Kluchnikov60437182012-05-24 22:07:15 +040030};
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010031#endif
Ivan Kluchnikov60437182012-05-24 22:07:15 +040032/* Debug Areas of the code */
33enum {
34 DCSN1,
35 DL1IF,
36 DRLCMAC,
37 DRLCMACDATA,
Andreas Eversberge6228b32012-07-03 13:36:03 +020038 DRLCMACDL,
39 DRLCMACUL,
Andreas Eversberg5dac2f02012-06-27 15:52:04 +020040 DRLCMACSCHED,
Andreas Eversbergb3ded4c2012-07-24 10:47:24 +020041 DRLCMACBW,
Ivan Kluchnikov60437182012-05-24 22:07:15 +040042 DBSSGP,
43 DPCU,
44 aDebug_LastEntry
45};
46
47/* context */
48#define BSC_CTX_SUBSCR 1
49#define BSC_CTX_NSVC 4
50#define BSC_CTX_BVC 5
51
52/* target */
53
54enum {
55 //DEBUG_FILTER_ALL = 1 << 0,
56 LOG_FILTER_IMSI = 1 << 1,
57 LOG_FILTER_NSVC = 1 << 2,
58 LOG_FILTER_BVC = 1 << 3,
59};
60
61/* we don't need a header dependency for this... */
62
63struct gprs_nsvc;
64struct bssgp_bvc_ctx;
65
66void log_set_imsi_filter(struct log_target *target, const char *imsi);
67void log_set_nsvc_filter(struct log_target *target,
68 struct gprs_nsvc *nsvc);
69void log_set_bvc_filter(struct log_target *target,
70 struct bssgp_bvc_ctx *bctx);
71
72extern const struct log_info gprs_log_info;
73
74
75
76#endif // GPRS_DEBUG_H