osmo-iuh/include/osmocom/ranap/ranap_common_cn.h

15 lines
442 B
C

#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 connection-less 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);