aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/icmp/tx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/icmp/tx.c')
-rw-r--r--src/protocol/icmp/tx.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/protocol/icmp/tx.c b/src/protocol/icmp/tx.c
new file mode 100644
index 0000000..27fe876
--- /dev/null
+++ b/src/protocol/icmp/tx.c
@@ -0,0 +1,21 @@
+/*
+ * wip, a small TCP/IP stack.
+ * Copyright (C) 2025 Xavier Del Campo Romero
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
+
+#include <wip/wip.h>
+#include <wip/prv/log.h>
+#include <wip/prv/icmp.h>
+#include <wip/prv/icmp/types.h>
+#include <stddef.h>
+
+int wip_icmp_tx(struct wip *const wip, void *const buf, const size_t n,
+ void *const args)
+{
+ wip_log("%s: TODO\n");
+ return 0;
+}