/* * (C) 2022 by sysmocom - s.f.m.c. GmbH * Author: Vadim Yanitskiy * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include #include int g_llc_log_cat[_OSMO_GPRS_LLC_LOGC_MAX] = { [0 ... _OSMO_GPRS_LLC_LOGC_MAX - 1] = DLGLOBAL }; void osmo_gprs_llc_set_log_cat(enum osmo_gprs_llc_log_cat logc, int logc_num) { OSMO_ASSERT(logc < _OSMO_GPRS_LLC_LOGC_MAX); g_llc_log_cat[logc] = logc_num; }