blob: 7ab273a2d828cd4ed4aed0bf41058d72eade1ab5 [file] [log] [blame]
Neels Hofmeyr4470f932016-04-19 00:13:53 +02001#pragma once
2
3struct ANY;
4struct ranap_message_s;
5struct hnb_test;
6
7/* main calls RUA */
8void hnb_test_rua_dt_handle(struct hnb_test *hnb, struct ANY *in);
9
10/* RUA calls RANAP */
11void hnb_test_rua_dt_handle_ranap(struct hnb_test *hnb,
12 struct ranap_message_s *ranap_msg);
13
14/* RANAP calls main with actual payload*/
15void hnb_test_nas_rx_dtap(struct hnb_test *hnb, void *data, int len);
Neels Hofmeyr4a0a69a2016-04-19 00:06:28 +020016void hnb_test_rx_secmode_cmd(struct hnb_test *hnb, long ip_alg);