aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2013-06-30 14:25:07 +0200
committerHarald Welte <laforge@gnumonks.org>2013-10-06 11:54:39 +0200
commita3e9dd57570630d020fdf308d38e0650801da0a5 (patch)
tree3f15d0139c914889e64872029adc74867772b58f
parente68055bf112c62a5134c6f88f8384967515fb884 (diff)
ipaccess: rename ipaccess_bts_cb() to ipaccess_bts_read_cb()
this is consistent with ipaccess_bts_write_cb().
-rw-r--r--src/input/ipaccess.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 5c6faa9..6663b9f 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -800,7 +800,7 @@ static struct msgb *ipa_bts_id_ack(void)
return nmsg2;
}
-static int ipaccess_bts_cb(struct ipa_client_conn *link, struct msgb *msg)
+static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
{
struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
struct e1inp_ts *e1i_ts = NULL;
@@ -974,7 +974,7 @@ static int ipaccess_line_update(struct e1inp_line *line)
line->ops->cfg.ipa.addr,
IPA_TCP_PORT_OML,
NULL,
- ipaccess_bts_cb,
+ ipaccess_bts_read_cb,
ipaccess_bts_write_cb,
line);
if (link == NULL) {
@@ -1008,7 +1008,7 @@ int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
E1INP_SIGN_RSL,
rem_addr, rem_port,
NULL,
- ipaccess_bts_cb,
+ ipaccess_bts_read_cb,
ipaccess_bts_write_cb,
line);
if (rsl_link == NULL) {