blob: 3f9ba3f83199517add1e864e2e7a358046b2defb [file] [log] [blame]
Max372868b2017-03-02 12:12:00 +01001/* OsmoHLR Control Interface implementation */
2
3/* (C) 2017 sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Max Suraev <msuraev@sysmocom.de>
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/ctrl/control_if.h>
26
Neels Hofmeyr446eb0f2017-10-17 01:58:24 +020027enum hlr_ctrl_node {
28 CTRL_NODE_SUBSCR = _LAST_CTRL_NODE,
29 CTRL_NODE_SUBSCR_BY,
30 _LAST_CTRL_NODE_HLR
31};
Max372868b2017-03-02 12:12:00 +010032
33int hlr_ctrl_cmds_install();
Neels Hofmeyr234f9cb2017-10-24 17:23:04 +020034struct ctrl_handle *hlr_controlif_setup(struct hlr *hlr);