summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 77a6c5a..5cdcc63 100644
--- a/src/main.c
+++ b/src/main.c
@@ -68,7 +68,12 @@ data_send(void)
return error;
}
- dgram_send(&link, TEST_STR, sizeof(TEST_STR));
+ /* Send test packet to FF:FF:FF:FF:FF:FF */
+ dgram_send(
+ &link, 0xFFFFFFFFFFFF,
+ TEST_STR, sizeof(TEST_STR)
+ );
+
onet_close(&link);
return 0;
}