From 13cb311c06f33cbfb9e01bf1f72e44956d8f0ec4 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 22 Feb 2020 19:22:02 +0100 Subject: [PATCH] extend osmo_st2_cardem_inst with fields required by osmo-remsim Change-Id: Ib568e5212abfd1269a12c9e5672cdf23b4abff91 --- host/include/osmocom/simtrace2/simtrace2_api.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/host/include/osmocom/simtrace2/simtrace2_api.h b/host/include/osmocom/simtrace2/simtrace2_api.h index 012b96c5..aa1637d9 100644 --- a/host/include/osmocom/simtrace2/simtrace2_api.h +++ b/host/include/osmocom/simtrace2/simtrace2_api.h @@ -33,6 +33,10 @@ struct osmo_st2_cardem_inst { const struct osim_cla_ins_card_profile *card_prof; /* libosmosim SIM card channel */ struct osim_chan_hdl *chan; + /* path of the underlying USB device */ + char *usb_path; + /* opaque data TBD by user */ + void *priv; }; int osmo_st2_transp_tx_msg(struct osmo_st2_transport *transp, struct msgb *msg);