summaryrefslogtreecommitdiff
path: root/cesar/cl
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/cl')
-rw-r--r--cesar/cl/test/functional/src/cl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cesar/cl/test/functional/src/cl.c b/cesar/cl/test/functional/src/cl.c
index 51eb3a058e..6f81dfa0c0 100644
--- a/cesar/cl/test/functional/src/cl.c
+++ b/cesar/cl/test/functional/src/cl.c
@@ -96,7 +96,7 @@ cl_data_tx_send (test_t test)
tei = 0;
lid = 0;
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == MAC_TEI_UNASSOCIATED);
test_fail_unless (lid == 0);
@@ -113,7 +113,7 @@ cl_data_tx_send (test_t test)
mac_config.tei = 1;
mac_config.authenticated = true;
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == MAC_TEI_BCAST);
test_fail_unless (lid == 1);
@@ -141,7 +141,7 @@ cl_data_tx_send (test_t test)
cl_mactotei_addr_add (table, 0x123456789ABCull, 2, 1);
cl_mactotei_use_table (cl, table);
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == 2);
test_fail_unless (lid == 1);
@@ -396,7 +396,7 @@ phy_date (phy_t *phy)
void
sar_msdu_add (sar_t *ctx, u8 *buffer, u16 length, u32 ats_confounder,
- mfs_tx_t *mfs, void *user_data)
+ mfs_tx_t *mfs, void *user_data, u32 arrival_time_ntb)
{
dbg_assert (ctx);
dbg_assert (mfs);