diff options
author | Harald Welte <laforge@gnumonks.org> | 2012-06-17 13:04:02 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2012-06-17 13:05:48 +0800 |
commit | de4599cc350747609f1b66d84885b34cf76ae253 (patch) | |
tree | c9e0fa445cd0d0d4b46abd516aa9b9499ab7b60b /openbsc/include | |
parent | 8eda90d9506ca4c34a3476415eb70d51043fcdf1 (diff) |
libgb: make sure all BSSGP functions have bssgp_ prefix
We change the minority of functions employing the gprs_bssgp_ prefix to
match with the majority without gprs_ in front.
Diffstat (limited to 'openbsc/include')
-rw-r--r-- | openbsc/include/osmocom/gprs/gprs_bssgp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openbsc/include/osmocom/gprs/gprs_bssgp.h b/openbsc/include/osmocom/gprs/gprs_bssgp.h index e060fc03..66c2290f 100644 --- a/openbsc/include/osmocom/gprs/gprs_bssgp.h +++ b/openbsc/include/osmocom/gprs/gprs_bssgp.h @@ -236,7 +236,7 @@ enum bssgp_ctr { #include <osmocom/gprs/gprs_msgb.h> /* BSSGP-UL-UNITDATA.ind */ -int gprs_bssgp_rcvmsg(struct msgb *msg); +int bssgp_rcvmsg(struct msgb *msg); /* BSSGP-DL-UNITDATA.req */ struct bssgp_lv { @@ -252,8 +252,8 @@ struct bssgp_dl_ud_par { struct bssgp_lv ms_ra_cap; uint8_t qos_profile[3]; }; -int gprs_bssgp_tx_dl_ud(struct msgb *msg, uint16_t pdu_lifetime, - struct bssgp_dl_ud_par *dup); +int bssgp_tx_dl_ud(struct msgb *msg, uint16_t pdu_lifetime, + struct bssgp_dl_ud_par *dup); uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf); int bssgp_create_cell_id(uint8_t *buf, const struct gprs_ra_id *raid, @@ -292,12 +292,12 @@ struct bssgp_paging_info { }; /* Send a single GMM-PAGING.req to a given NSEI/NS-BVCI */ -int gprs_bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci, - struct bssgp_paging_info *pinfo); +int bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci, + struct bssgp_paging_info *pinfo); /* gprs_bssgp_vty.c */ -int gprs_bssgp_vty_init(void); -void gprs_bssgp_set_log_ss(int ss); +int bssgp_vty_init(void); +void bssgp_set_log_ss(int ss); int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx); |