From 199b97652bf6261000ecd0c2c0c442edde4db4e0 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 30 Mar 2016 12:43:04 +0200 Subject: sccp_helpers: add osmo_ prefix to all functions Change-Id: I839c976f3ac722b955da18216de3df2eaa4c5af3 --- include/osmocom/sigtran/sccp_helpers.h | 43 +++++++++++++++++----------------- 1 file changed, 22 insertions(+), 21 deletions(-) (limited to 'include/osmocom/sigtran') diff --git a/include/osmocom/sigtran/sccp_helpers.h b/include/osmocom/sigtran/sccp_helpers.h index 01f7af6..d5916a9 100644 --- a/include/osmocom/sigtran/sccp_helpers.h +++ b/include/osmocom/sigtran/sccp_helpers.h @@ -4,30 +4,31 @@ #include #include -int sccp_tx_unitdata(struct osmo_sccp_link *link, - const struct osmo_sccp_addr *calling_addr, - const struct osmo_sccp_addr *called_addr, - uint8_t *data, unsigned int len); +int osmo_sccp_tx_unitdata(struct osmo_sccp_link *link, + const struct osmo_sccp_addr *calling_addr, + const struct osmo_sccp_addr *called_addr, + uint8_t *data, unsigned int len); -int sccp_tx_unitdata_msg(struct osmo_sccp_link *link, - const struct osmo_sccp_addr *calling_addr, - const struct osmo_sccp_addr *called_addr, - struct msgb *msg); +int osmo_sccp_tx_unitdata_msg(struct osmo_sccp_link *link, + const struct osmo_sccp_addr *calling_addr, + const struct osmo_sccp_addr *called_addr, + struct msgb *msg); -void sccp_make_addr_pc_ssn(struct osmo_sccp_addr *addr, uint32_t pc, uint32_t ssn); +void osmo_sccp_make_addr_pc_ssn(struct osmo_sccp_addr *addr, + uint32_t pc, uint32_t ssn); -int sccp_tx_conn_req(struct osmo_sccp_link *link, uint32_t conn_id, - const struct osmo_sccp_addr *calling_addr, - const struct osmo_sccp_addr *called_addr, - uint8_t *data, unsigned int len); +int osmo_sccp_tx_conn_req(struct osmo_sccp_link *link, uint32_t conn_id, + const struct osmo_sccp_addr *calling_addr, + const struct osmo_sccp_addr *called_addr, + uint8_t *data, unsigned int len); -int sccp_tx_conn_req_msg(struct osmo_sccp_link *link, uint32_t conn_id, - const struct osmo_sccp_addr *calling_addr, - const struct osmo_sccp_addr *called_addr, - struct msgb *msg); +int osmo_sccp_tx_conn_req_msg(struct osmo_sccp_link *link, uint32_t conn_id, + const struct osmo_sccp_addr *calling_addr, + const struct osmo_sccp_addr *called_addr, + struct msgb *msg); -int sccp_tx_data(struct osmo_sccp_link *link, uint32_t conn_id, - uint8_t *data, unsigned int len); +int osmo_sccp_tx_data(struct osmo_sccp_link *link, uint32_t conn_id, + uint8_t *data, unsigned int len); -int sccp_tx_data_msg(struct osmo_sccp_link *link, uint32_t conn_id, - struct msgb *msg); +int osmo_sccp_tx_data_msg(struct osmo_sccp_link *link, uint32_t conn_id, + struct msgb *msg); -- cgit v1.2.3