blob: f0fd09eb86b056eb1159ae532373b8648842c36a [file] [log] [blame]
#pragma once
#include <stdint.h>
#include <osmocom/ranap/ranap_common.h>
#include <osmocom/ranap/ranap_ies_defs.h>
typedef void (*ranap_handle_cb)(void *ctx, ranap_message *ranap_msg);
/* receive a connections-liess RANAP message */
int ranap_cn_rx_cl(ranap_handle_cb cb, void *ctx, uint8_t *data, size_t len);
/* receive a connection-oriented RANAP message */
int ranap_cn_rx_co(ranap_handle_cb cb, void *ctx, uint8_t *data, size_t len);