blob: 00b8097b2b412e67b521e5c039a2123a3c4173d9 [file] [log] [blame]
Pau Espin Pedroldb936b92018-09-03 16:50:49 +02001/* Generic signalling/notification infrastructure */
2/* (C) 2018 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
3 *
4 * Author: Pau Espin Pedrol <pespin@sysmocom.de>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#pragma once
24
25#include <osmocom/core/signal.h>
26
27/* Signalling subsystems */
28enum signal_subsystems {
29 SS_TRANSC,
30};
31
32/* SS_TRANSC signals */
33enum SS_TRANSC {
34 S_TRANSC_STOP_REQUIRED, /* Transceiver fatal error, it should be stopped */
35};