/* * (C) 2022 by sysmocom - s.f.m.c. GmbH * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation; either version 3 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ #include #include #include int g_sndcp_log_cat[_OSMO_GPRS_SNDCP_LOGC_MAX] = { [0 ... _OSMO_GPRS_SNDCP_LOGC_MAX - 1] = DLGLOBAL }; void osmo_gprs_sndcp_set_log_cat(enum osmo_gprs_sndcp_log_cat logc, int logc_num) { OSMO_ASSERT(logc < _OSMO_GPRS_SNDCP_LOGC_MAX); g_sndcp_log_cat[logc] = logc_num; }