blob: 1a5f01a0bcf5e8ffced04419eb2a93c864176441 [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 Eversberge6228b32012-07-03 13:36:03 +020034 DRLCMACDL,
35 DRLCMACUL,
Andreas Eversberg5dac2f02012-06-27 15:52:04 +020036 DRLCMACSCHED,
Andreas Eversbergb3ded4c2012-07-24 10:47:24 +020037 DRLCMACBW,
Ivan Kluchnikov60437182012-05-24 22:07:15 +040038 DBSSGP,
39 DPCU,
40 aDebug_LastEntry
41};
42
43/* context */
44#define BSC_CTX_SUBSCR 1
45#define BSC_CTX_NSVC 4
46#define BSC_CTX_BVC 5
47
48/* target */
49
50enum {
51 //DEBUG_FILTER_ALL = 1 << 0,
52 LOG_FILTER_IMSI = 1 << 1,
53 LOG_FILTER_NSVC = 1 << 2,
54 LOG_FILTER_BVC = 1 << 3,
55};
56
57/* we don't need a header dependency for this... */
58
59struct gprs_nsvc;
60struct bssgp_bvc_ctx;
61
62void log_set_imsi_filter(struct log_target *target, const char *imsi);
63void log_set_nsvc_filter(struct log_target *target,
64 struct gprs_nsvc *nsvc);
65void log_set_bvc_filter(struct log_target *target,
66 struct bssgp_bvc_ctx *bctx);
67
68extern const struct log_info gprs_log_info;
69
70
71
72#endif // GPRS_DEBUG_H