aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/input/ipa.c4
-rw-r--r--src/input/ipaccess.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/input/ipa.c b/src/input/ipa.c
index ce1e6f2..b9bde68 100644
--- a/src/input/ipa.c
+++ b/src/input/ipa.c
@@ -167,7 +167,7 @@ int ipa_client_write_default_cb(struct ipa_client_link *link)
return 0;
}
-int ipa_client_fd_cb(struct osmo_fd *ofd, unsigned int what)
+static int ipa_client_fd_cb(struct osmo_fd *ofd, unsigned int what)
{
struct ipa_client_link *link = ofd->data;
int error, ret;
@@ -301,7 +301,7 @@ void ipa_client_link_send(struct ipa_client_link *link, struct msgb *msg)
link->ofd->when |= BSC_FD_WRITE;
}
-int ipa_server_fd_cb(struct osmo_fd *ofd, unsigned int what)
+static int ipa_server_fd_cb(struct osmo_fd *ofd, unsigned int what)
{
int ret;
struct sockaddr_in sa;
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 5f35ab6..602aded 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -531,7 +531,7 @@ static int handle_ts1_write(struct osmo_fd *bfd)
return __handle_ts1_write(bfd, line);
}
-int ipaccess_bts_write_cb(struct ipa_client_link *link)
+static int ipaccess_bts_write_cb(struct ipa_client_link *link)
{
struct e1inp_line *line = link->line;