aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-10-13 14:43:49 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-10-13 15:17:06 +0200
commitc7ccdd490f84914754c72c7b3105772f74a40208 (patch)
tree0f3e535e9a655ed4c0da787452f8a628df091de8 /include
parent4ff1a5a957859ceec50f3f191399da5163198ff5 (diff)
cosmetic: hnbgw: addr related renames, move define, move comment
Prepare for parameterization of IuCS and IuPS addresses: Conform internal variable naming to local-ip, local-port, remote-ip, remote-port (instead of bind-ip). Rename HNBGW_IUH_LOCAL_IP_DEFAULT to HNGGW_LOCAL_IP_DEFAULT to be more general and move it to the top. Move a function doc comment to the .c file. Change-Id: Ice85941c978498e3ddf41d151248507e7f56cb5d
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/iuh/hnbgw.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/include/osmocom/iuh/hnbgw.h b/include/osmocom/iuh/hnbgw.h
index dfc9d82..6b5a855 100644
--- a/include/osmocom/iuh/hnbgw.h
+++ b/include/osmocom/iuh/hnbgw.h
@@ -19,6 +19,8 @@ enum {
};
+#define HNBGW_LOCAL_IP_DEFAULT "0.0.0.0"
+
/* 25.467 Section 7.1 */
#define IUH_DEFAULT_SCTP_PORT 29169
#define RNA_DEFAULT_SCTP_PORT 25471
@@ -106,13 +108,11 @@ struct ue_context {
struct hnb_context *hnb;
};
-#define HNBGW_IUH_LOCAL_IP_DEFAULT "0.0.0.0"
-
struct hnb_gw {
struct {
- const char *iuh_bind_addr;
+ const char *iuh_local_ip;
/*! SCTP port for Iuh listening */
- uint16_t iuh_listen_port;
+ uint16_t iuh_local_port;
/*! The UDP port where we receive multiplexed CS user
* plane traffic from HNBs */
uint16_t iuh_cs_mux_port;
@@ -149,8 +149,4 @@ void hnb_context_release(struct hnb_context *ctx);
void hnbgw_vty_init(struct hnb_gw *gw, void *tall_ctx);
-/*
- * Return IP address passed to the hnbgw/iuh/bind command, or
- * IUH_BIND_ADDR_DEFAULT
- */
-const char *hnbgw_get_iuh_bind_addr(struct hnb_gw *gw);
+const char *hnbgw_get_iuh_local_ip(struct hnb_gw *gw);