aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc_nat/bsc_nat.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-08-26 14:04:43 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-09-02 11:11:16 +0200
commit6fcc3a9e8afdac8cb1d126cbd5c35be0e3505bde (patch)
tree988792daa6d998dc9e3b26f3a2af2365c84d7fd4 /openbsc/src/osmo-bsc_nat/bsc_nat.c
parent57412567038951b69391cea9b941bc9b31515823 (diff)
nat: Attempt to follow the MODULE_METHOD pattern for methods
Rename methods to be like bsc_ussd_ACTION.
Diffstat (limited to 'openbsc/src/osmo-bsc_nat/bsc_nat.c')
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_nat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat.c b/openbsc/src/osmo-bsc_nat/bsc_nat.c
index 1eac9837c..2254a8d86 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat.c
@@ -1081,7 +1081,7 @@ static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
}
/* hand data to a side channel */
- if (bsc_check_ussd(con, parsed, msg) == 1)
+ if (bsc_ussd_check(con, parsed, msg) == 1)
con->con_local = NAT_CON_END_USSD;
/*
@@ -1093,7 +1093,7 @@ static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
talloc_free(parsed);
parsed = NULL;
} else if (con->con_local == NAT_CON_END_USSD) {
- bsc_check_ussd(con, parsed, msg);
+ bsc_ussd_check(con, parsed, msg);
}
con_bsc = con->bsc;
@@ -1595,7 +1595,7 @@ int main(int argc, char **argv)
}
/* Close all connections handed out to the USSD module */
-int bsc_close_ussd_connections(struct bsc_nat *nat)
+int bsc_ussd_close_connections(struct bsc_nat *nat)
{
struct nat_sccp_connection *con;
llist_for_each_entry(con, &nat->sccp_connections, list_entry) {