aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-08-04 11:35:32 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-08-04 11:37:50 +0200
commit1ddd9e518e9d2b335249239955174718d35ef6ef (patch)
treea373189eb14b8137a9b5a5f3e31922701863f177 /openbsc/include/openbsc
parentb900459e968336baa87c216505f51e9c9f55a124 (diff)
gbproxy: Use gbproxy_ for all structures
The application is called gbproxy but the structures and functions were inconsistently named as either gbprox or gbproxy. Rename all structures to use gbproxy. Done with Jacob
Diffstat (limited to 'openbsc/include/openbsc')
-rw-r--r--openbsc/include/openbsc/gb_proxy.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/openbsc/include/openbsc/gb_proxy.h b/openbsc/include/openbsc/gb_proxy.h
index 5e5043a53..ab6b220ef 100644
--- a/openbsc/include/openbsc/gb_proxy.h
+++ b/openbsc/include/openbsc/gb_proxy.h
@@ -43,7 +43,7 @@ struct gbproxy_config {
int tlli_max_len;
};
-struct gbprox_patch_state {
+struct gbproxy_patch_state {
int local_mnc;
int local_mcc;
@@ -52,7 +52,7 @@ struct gbprox_patch_state {
int enabled_tllis_count;
};
-struct gbprox_peer {
+struct gbproxy_peer {
struct llist_head list;
/* NSEI of the peer entity */
@@ -68,10 +68,10 @@ struct gbprox_peer {
/* Counter */
struct rate_ctr_group *ctrg;
- struct gbprox_patch_state patch_state;
+ struct gbproxy_patch_state patch_state;
};
-struct gbprox_tlli_info {
+struct gbproxy_tlli_info {
struct llist_head list;
uint32_t tlli;
@@ -108,10 +108,10 @@ int gbprox_str_to_apn(uint8_t *apn_enc, const char *str, size_t max_chars);
int gbprox_set_patch_filter(const char *filter, const char **err_msg);
-void gbprox_delete_tlli(struct gbprox_peer *peer,
- struct gbprox_tlli_info *tlli_info);
-int gbprox_remove_stale_tllis(struct gbprox_peer *peer, time_t now);
+void gbprox_delete_tlli(struct gbproxy_peer *peer,
+ struct gbproxy_tlli_info *tlli_info);
+int gbprox_remove_stale_tllis(struct gbproxy_peer *peer, time_t now);
int gbprox_cleanup_peers(uint16_t nsei, uint16_t bvci);
-struct gbprox_peer *gbprox_peer_by_nsei(uint16_t nsei);
+struct gbproxy_peer *gbprox_peer_by_nsei(uint16_t nsei);
#endif