Mark gprs_ns_reconnect() as static (not used outside of C file)

Change-Id: I95138adedacdc2d953284cff57f79ecb33616f0f
This commit is contained in:
Harald Welte 2019-02-21 17:17:07 +01:00
parent bd5647ee92
commit b26854c276
2 changed files with 2 additions and 2 deletions

View File

@ -47,6 +47,7 @@ extern uint16_t spoof_mcc, spoof_mnc;
extern bool spoof_mnc_3_digits;
static void bvc_timeout(void *_priv);
static int gprs_ns_reconnect(struct gprs_nsvc *nsvc);
static int parse_imsi(struct tlv_parsed *tp, char *imsi)
{
@ -857,7 +858,7 @@ static void bvc_timeout(void *_priv)
osmo_timer_schedule(&the_pcu.bvc_timer, the_pcu.bts->fc_interval, 0);
}
int gprs_ns_reconnect(struct gprs_nsvc *nsvc)
static int gprs_ns_reconnect(struct gprs_nsvc *nsvc)
{
struct gprs_nsvc *nsvc2;

View File

@ -81,7 +81,6 @@ struct gprs_bssgp_pcu *gprs_bssgp_create_and_connect(struct gprs_rlcmac_bts *bts
uint16_t lac, uint16_t rac, uint16_t cell_id);
void gprs_bssgp_destroy(void);
int gprs_ns_reconnect(struct gprs_nsvc *nsvc);
struct bssgp_bvc_ctx *gprs_bssgp_pcu_current_bctx(void);