diff options
Diffstat (limited to 'include/osmocom/sigtran/osmo_ss7.h')
-rw-r--r-- | include/osmocom/sigtran/osmo_ss7.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/include/osmocom/sigtran/osmo_ss7.h b/include/osmocom/sigtran/osmo_ss7.h index a457709..71c2022 100644 --- a/include/osmocom/sigtran/osmo_ss7.h +++ b/include/osmocom/sigtran/osmo_ss7.h @@ -445,17 +445,20 @@ osmo_ss7_xua_server_set_local_host(struct osmo_xua_server *xs, const char *local void osmo_ss7_xua_server_destroy(struct osmo_xua_server *xs); - struct osmo_sccp_instance * -osmo_sccp_simple_client(void *ctx, const char *name, uint32_t pc, - enum osmo_ss7_asp_protocol prot, int local_port, - const char *local_ip, int remote_port, const char *remote_ip); +osmo_sccp_simple_client(void *ctx, const char *name, uint32_t default_pc, + enum osmo_ss7_asp_protocol prot, int default_local_port, + const char *default_local_ip, int default_remote_port, + const char *default_remote_ip); struct osmo_sccp_instance * osmo_sccp_simple_client_on_ss7_id(void *ctx, uint32_t ss7_id, const char *name, - uint32_t pc, enum osmo_ss7_asp_protocol prot, - int local_port, const char *local_ip, - int remote_port, const char *remote_ip); + uint32_t default_pc, + enum osmo_ss7_asp_protocol prot, + int default_local_port, + const char *default_local_ip, + int default_remote_port, + const char *default_remote_ip); struct osmo_sccp_instance * osmo_sccp_simple_server(void *ctx, uint32_t pc, |