mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 21:23:30 +00:00
This commit fixes the following errors: Missing timeout param for mslookup. Fails to start reading a written config if an msc node is configured in the mslookup server. Places the individual msc node services in the top-level wildcard node due to incorrect indentation. * Add missing timeout param. * Add missing "ipa-name" part to mslookup-server-msc section. * Add one extra space indentation for msc services. This commit also adds a DEFINE for the default timeout value. Change-Id: Ibb60e74a0803f05f37ac13ca529d77b4cb736025
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/* Copyright 2019 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <osmocom/mslookup/mslookup.h>
|
|
#include <osmocom/hlr/gsup_server.h>
|
|
#include <osmocom/hlr/logging.h>
|
|
#include <osmocom/gsupclient/cni_peer_id.h>
|
|
#include <osmocom/gsupclient/gsup_req.h>
|
|
|
|
#define OSMO_DGSM_DEFAULT_RESULT_TIMEOUT_MS 2000
|
|
#define LOG_DGSM(imsi, level, fmt, args...) \
|
|
LOGP(DDGSM, level, "(IMSI-%s) " fmt, imsi, ##args)
|
|
|
|
struct vty;
|
|
struct remote_hlr;
|
|
struct hlr_subscriber;
|
|
|
|
extern void *dgsm_ctx;
|
|
|
|
void dgsm_init(void *ctx);
|
|
void dgsm_start(void *ctx);
|
|
void dgsm_stop();
|
|
|
|
bool dgsm_check_forward_gsup_msg(struct osmo_gsup_req *req);
|
|
|
|
void dgsm_vty_init();
|
|
void dgsm_mdns_client_config_apply(void);
|
|
|
|
bool hlr_subscr_lu_age(const struct hlr_subscriber *subscr, uint32_t *age_p);
|