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

pkg/tinydtls: fix compilation with sock_async

When module `sock_async` is used but `sock_async_event` is not,
compilation previously failed. This fixes the issue.
This commit is contained in:
Marian Buschsieweke 2024-12-23 13:02:56 +01:00
parent 91d587f8fa
commit e08fb4946f
No known key found for this signature in database
GPG Key ID: 758BD52517F79C41

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);
}