Move function defined in rest_it_op.c to rest_it_op.h

Change-Id: I434357d995a3c90342dbc7d2ac7e568c049ff7ae
This commit is contained in:
Pau Espin 2022-07-20 16:34:04 +02:00
parent f9d73a1cc1
commit a346b88b42
3 changed files with 2 additions and 3 deletions

View File

@ -58,9 +58,6 @@ void cbc_message_delete(struct cbc_message *cbcmsg, struct rest_it_op *op);
struct cbc_message *cbc_message_by_id(uint16_t message_id);
int peer_new_cbc_message(struct cbc_peer *peer, struct cbc_message *cbcmsg);
/* rest_it_op.c */
void rest2main_read_cb(struct osmo_it_q *q, struct llist_head *item);
/* smscb_*fsm.c */
enum smscb_fsm_event {

View File

@ -50,3 +50,4 @@ struct rest_it_op {
int rest_it_op_send_and_wait(struct rest_it_op *op);
void rest_it_op_set_http_result(struct rest_it_op *op, uint32_t code, const char *body);
void rest_it_op_complete(struct rest_it_op *op);
void rest2main_read_cb(struct osmo_it_q *q, struct llist_head *item);

View File

@ -45,6 +45,7 @@
#include <osmocom/vty/misc.h>
#include <osmocom/cbc/internal.h>
#include <osmocom/cbc/rest_it_op.h>
#include <osmocom/cbc/cbsp_server.h>
#include <osmocom/cbc/sbcap_server.h>
#include <osmocom/cbc/cbc_data.h>