aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-04-23 12:22:25 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2023-07-21 12:28:03 +0200
commitf8ac734849a2ecf004858042930b274e74bbcf81 (patch)
tree7b4ca431f74e54b55d1a647e2f26945a0cff3d48 /include
parente2a408861904b555d4e66eb03d91ec745f1e7587 (diff)
ASCI: Add VTY to configure GCR (Group Call Register)
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/Makefile.am1
-rw-r--r--include/osmocom/msc/asci_vty.h25
-rw-r--r--include/osmocom/msc/vty.h4
3 files changed, 30 insertions, 0 deletions
diff --git a/include/osmocom/msc/Makefile.am b/include/osmocom/msc/Makefile.am
index 9fa06eb8e..a940056fc 100644
--- a/include/osmocom/msc/Makefile.am
+++ b/include/osmocom/msc/Makefile.am
@@ -57,4 +57,5 @@ noinst_HEADERS = \
vlr_sgs.h \
vty.h \
asci_gcr.h \
+ asci_vty.h \
$(NULL)
diff --git a/include/osmocom/msc/asci_vty.h b/include/osmocom/msc/asci_vty.h
new file mode 100644
index 000000000..5fe11f6f5
--- /dev/null
+++ b/include/osmocom/msc/asci_vty.h
@@ -0,0 +1,25 @@
+/*
+ * (C) 2023 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
+ * All Rights Reserved
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ *
+ * Author: Andreas Eversberg
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+void asci_vty_init(struct gsm_network *msc_network);
diff --git a/include/osmocom/msc/vty.h b/include/osmocom/msc/vty.h
index 11d9ed113..a7f1db7ca 100644
--- a/include/osmocom/msc/vty.h
+++ b/include/osmocom/msc/vty.h
@@ -26,6 +26,10 @@ enum bsc_vty_node {
HLR_NODE,
CFG_SGS_NODE,
SMSC_NODE,
+ ASCI_NODE,
+ GCR_NODE,
+ VGC_NODE,
+ VBC_NODE,
};
int bsc_vty_init_extra(void);