naming: Distinguish "rspro client" from "remsim client"

"remsim-client" is the client program running next to a phone/modem
which is attaching to the SIM slot.

"RSPRO client" is a protocl-level client of the RSPRO protocol:
* the remsim-client connects as RSPRO client to the remsim-server
* the remsim-client connects as RSPRO client to the remsim-bankd
* the remsim-bankd connects as RSPRO client to the remsim-server

Let's clarify this in naming.

Change-Id: I10462d4669a0a30c46f3f8d3df67e9c1d4ce8c4b
This commit is contained in:
Harald Welte 2019-03-09 12:59:41 +01:00
parent 707c85a49b
commit 3cded63aa6
5 changed files with 10 additions and 11 deletions

View File

@ -12,7 +12,7 @@ libosmo_rspro_la_LIBADD = $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(OSMOABIS_LIBS) \
rspro/libosmo-asn1-rspro.la
libosmo_rspro_la_SOURCES = rspro_util.c
noinst_HEADERS = debug.h bankd.h client.h internal.h rspro_util.h slotmap.h remsim_client_fsm.h \
noinst_HEADERS = debug.h bankd.h client.h internal.h rspro_util.h slotmap.h rspro_client_fsm.h \
simtrace2/apdu_dispatch.h \
simtrace2/libusb_util.h \
simtrace2/simtrace2-discovery.h \
@ -25,16 +25,16 @@ pcsc_test_SOURCES = driver_core.c driver_pcsc.c main.c
pcsc_test_LDADD = $(OSMOCORE_LIBS) \
$(PCSC_LIBS) libosmo-rspro.la
remsim_bankd_SOURCES = slotmap.c bankd_main.c bankd_pcsc.c remsim_client_fsm.c debug.c
remsim_bankd_SOURCES = slotmap.c bankd_main.c bankd_pcsc.c rspro_client_fsm.c debug.c
remsim_bankd_LDADD = $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(OSMOABIS_LIBS) \
$(PCSC_LIBS) libosmo-rspro.la -lcsv
remsim_client_SOURCES = remsim_client.c remsim_client_fsm.c bankd_client_fsm.c debug.c
remsim_client_SOURCES = remsim_client.c rspro_client_fsm.c bankd_client_fsm.c debug.c
remsim_client_LDADD = $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(OSMOABIS_LIBS) \
libosmo-rspro.la
simtrace2_remsim_client_SOURCES = simtrace2-remsim_client.c \
bankd_client_fsm.c remsim_client_fsm.c debug.c \
bankd_client_fsm.c rspro_client_fsm.c debug.c \
simtrace2/apdu_dispatch.c \
simtrace2/simtrace2-discovery.c \
simtrace2/libusb_util.c

View File

@ -27,7 +27,7 @@
#include <osmocom/rspro/RsproPDU.h>
#include "bankd.h"
#include "remsim_client_fsm.h"
#include "rspro_client_fsm.h"
#include "debug.h"
#include "rspro_util.h"

View File

@ -5,7 +5,7 @@
#include <osmocom/rspro/RsproPDU.h>
#include "rspro_util.h"
#include "remsim_client_fsm.h"
#include "rspro_client_fsm.h"
#include "debug.h"
/* fsm.c */

View File

@ -295,8 +295,8 @@ static const struct osmo_fsm_state server_conn_fsm_states[] = {
},
};
struct osmo_fsm remsim_client_server_fsm = {
.name = "SERVER_CONN",
struct osmo_fsm rspro_client_server_fsm = {
.name = "RSPRO_CLIENT",
.states = server_conn_fsm_states,
.num_states = ARRAY_SIZE(server_conn_fsm_states),
.timer_cb = server_conn_fsm_timer_cb,
@ -308,7 +308,7 @@ int server_conn_fsm_alloc(void *ctx, struct rspro_server_conn *srvc)
{
struct osmo_fsm_inst *fi;
fi = osmo_fsm_inst_alloc(&remsim_client_server_fsm, ctx, srvc, LOGL_DEBUG, "server");
fi = osmo_fsm_inst_alloc(&rspro_client_server_fsm, ctx, srvc, LOGL_DEBUG, "server");
if (!fi)
return -1;
@ -320,5 +320,5 @@ int server_conn_fsm_alloc(void *ctx, struct rspro_server_conn *srvc)
static __attribute__((constructor)) void on_dso_load(void)
{
osmo_fsm_register(&remsim_client_server_fsm);
osmo_fsm_register(&rspro_client_server_fsm);
}

View File

@ -37,4 +37,3 @@ struct rspro_server_conn {
};
int server_conn_fsm_alloc(void *ctx, struct rspro_server_conn *srvc);
extern struct osmo_fsm remsim_client_server_fsm;