libcoap
4.3.0
coap_async_internal.h
Go to the documentation of this file.
1
/*
2
* coap_async_internal.h -- state management for asynchronous messages
3
*
4
* Copyright (C) 2010-2021 Olaf Bergmann <bergmann@tzi.org>
5
*
6
* SPDX-License-Identifier: BSD-2-Clause
7
*
8
* This file is part of the CoAP library libcoap. Please see README for terms
9
* of use.
10
*/
11
17
#ifndef COAP_ASYNC_INTERNAL_H_
18
#define COAP_ASYNC_INTERNAL_H_
19
20
#include "
coap3/net.h
"
21
22
#ifndef WITHOUT_ASYNC
23
33
struct
coap_async_t
{
34
struct
coap_async_t
*
next
;
35
coap_tick_t
delay
;
37
coap_session_t
*
session
;
38
coap_pdu_t
*
pdu
;
39
void
*
appdata
;
40
};
41
53
coap_tick_t
coap_check_async
(
coap_context_t
*context,
coap_tick_t
now);
54
60
void
61
coap_delete_all_async
(
coap_context_t
*context);
62
65
#endif
/* WITHOUT_ASYNC */
66
67
#endif
/* COAP_ASYNC_INTERNAL_H_ */
coap_tick_t
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
Definition:
coap_time.h:122
coap_check_async
coap_tick_t coap_check_async(coap_context_t *context, coap_tick_t now)
Checks if there are any pending Async requests - if so, send them off.
Definition:
net.c:3199
coap_delete_all_async
void coap_delete_all_async(coap_context_t *context)
Removes and frees off all of the async entries for the given context.
Definition:
async.c:139
net.h
coap_async_t
Definition:
coap_async_internal.h:33
coap_async_t::appdata
void * appdata
Definition:
coap_async_internal.h:39
coap_async_t::session
coap_session_t * session
transaction session
Definition:
coap_async_internal.h:37
coap_async_t::next
struct coap_async_t * next
internally used for linking
Definition:
coap_async_internal.h:34
coap_async_t::pdu
coap_pdu_t * pdu
copy of request pdu
Definition:
coap_async_internal.h:38
coap_async_t::delay
coap_tick_t delay
When to delay to before triggering the response 0 indicates never trigger.
Definition:
coap_async_internal.h:35
coap_context_t
The CoAP stack's global state is stored in a coap_context_t object.
Definition:
coap_net_internal.h:45
coap_pdu_t
structure for CoAP PDUs token, if any, follows the fixed size header, then options until payload mark...
Definition:
coap_pdu_internal.h:94
coap_session_t
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...
Definition:
cov_session_reference_model.c:5
include
coap3
coap_async_internal.h
Generated on Mon Jun 21 2021 10:40:32 for libcoap by
1.9.1