diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-09-09 03:14:50 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-09-18 01:08:14 +0200 |
| commit | c11cb04929f28853142b14339b66f561ca028f36 (patch) | |
| tree | a77a3ddcc1d01028e4077cb295b9b41f594c5d52 /src/protocol/udp/tx.c | |
Diffstat (limited to 'src/protocol/udp/tx.c')
| -rw-r--r-- | src/protocol/udp/tx.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/protocol/udp/tx.c b/src/protocol/udp/tx.c new file mode 100644 index 0000000..a29ec0f --- /dev/null +++ b/src/protocol/udp/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/udp.h> +#include <wip/prv/udp/types.h> +#include <stddef.h> + +int wip_udp_tx(struct wip *const wip, void *const buf, const size_t n, + void *const args) +{ + wip_log("%s: TODO\n"); + return 0; +} |
