1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #21105 from maribu/pkg/tinydtls/compilation-with-async-but-without-async-event

pkg/tinydtls: fix compilation with sock_async
This commit is contained in:
Marian Buschsieweke 2024-12-23 19:03:57 +00:00 committed by GitHub
commit 95fe972aee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1063,13 +1063,13 @@ void sock_dtls_set_cb(sock_dtls_t *sock, sock_dtls_cb_t cb, void *cb_arg)
{
sock->async_cb = cb;
sock->async_cb_arg = cb_arg;
if (IS_USED(MODULE_SOCK_ASYNC_EVENT)) {
sock_async_ctx_t *ctx = sock_dtls_get_async_ctx(sock);
if (ctx->queue) {
sock_udp_event_init(sock->udp_sock, ctx->queue, _udp_cb, sock);
return;
}
#if MODULE_SOCK_ASYNC_EVENT
sock_async_ctx_t *ctx = sock_dtls_get_async_ctx(sock);
if (ctx->queue) {
sock_udp_event_init(sock->udp_sock, ctx->queue, _udp_cb, sock);
return;
}
#endif
sock_udp_set_cb(sock->udp_sock, _udp_cb, sock);
}