cbsp_server.h: Move function to the proper section

Change-Id: I47f694c2ffa1df50394ff01977ddb85768657062
This commit is contained in:
Pau Espin Pedrol
2022-06-16 16:14:22 +02:00
committed by pespin
parent 9514e3e4ba
commit 6c7d06a50a

View File

@@ -23,6 +23,10 @@ struct osmo_cbsp_cbc {
int (*rx_cb)(struct osmo_cbsp_cbc_client *client, struct osmo_cbsp_decoded *dec);
};
struct osmo_cbsp_cbc *cbsp_cbc_create(void *ctx, const char *bind_ip, int bind_port,
int (*rx_cb)(struct osmo_cbsp_cbc_client *client,
struct osmo_cbsp_decoded *dec));
/* a single (remote) client connected to the (local) CBC server */
struct osmo_cbsp_cbc_client {
/* entry in osmo_cbsp_cbc.clients */
@@ -40,6 +44,3 @@ struct osmo_cbsp_cbc_client {
const char *cbsp_cbc_client_name(const struct osmo_cbsp_cbc_client *client);
void cbsp_cbc_client_tx(struct osmo_cbsp_cbc_client *client, struct osmo_cbsp_decoded *cbsp);
void cbsp_cbc_client_close(struct osmo_cbsp_cbc_client *client);
struct osmo_cbsp_cbc *cbsp_cbc_create(void *ctx, const char *bind_ip, int bind_port,
int (*rx_cb)(struct osmo_cbsp_cbc_client *client,
struct osmo_cbsp_decoded *dec));