libcoap 4.3.5-develop-ea01661
Loading...
Searching...
No Matches
coap_cache.h
Go to the documentation of this file.
1/* coap_cache.h -- Caching of CoAP requests
2*
3* Copyright (C) 2020-2025 Olaf Bergmann <bergmann@tzi.org>
4*
5 * SPDX-License-Identifier: BSD-2-Clause
6 *
7* This file is part of the CoAP library libcoap. Please see
8* README for terms of use.
9*/
10
16#ifndef COAP_CACHE_H_
17#define COAP_CACHE_H_
18
19#include "coap_forward_decls.h"
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
39typedef void (*coap_cache_app_data_free_callback_t)(void *data);
40
45
50
76 const coap_pdu_t *pdu,
77 coap_cache_session_based_t session_based);
78
106 const coap_pdu_t *pdu,
107 coap_cache_session_based_t session_based,
108 const uint16_t *ignore_options,
109 size_t ignore_count);
110
117
131 const uint16_t *options, size_t count);
132
157 const coap_pdu_t *pdu,
158 coap_cache_record_pdu_t record_pdu,
159 coap_cache_session_based_t session_based,
160 unsigned int idle_time);
161
170 coap_cache_entry_t *cache_entry);
171
183 const coap_cache_key_t *cache_key);
184
198 const coap_pdu_t *pdu,
199 coap_cache_session_based_t session_based);
200
210
225 void *data,
227
245 void *data,
247
258
261#ifdef __cplusplus
262}
263#endif
264
265#endif /* COAP_CACHE_H */
CoAP forward definitions.
#define COAP_API
void coap_delete_cache_entry(coap_context_t *context, coap_cache_entry_t *cache_entry)
Remove a cache-entry from the hash list and free off all the appropriate contents apart from app_data...
COAP_API int coap_cache_ignore_options(coap_context_t *context, const uint16_t *options, size_t count)
Define the CoAP options that are not to be included when calculating the cache-key.
void coap_delete_cache_key(coap_cache_key_t *cache_key)
Delete the cache-key.
COAP_API coap_cache_entry_t * coap_cache_get_by_key(coap_context_t *context, const coap_cache_key_t *cache_key)
Searches for a cache-entry identified by cache_key.
coap_cache_key_t * coap_cache_derive_key(const coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based)
Calculates a cache-key for the given CoAP PDU.
coap_cache_record_pdu_t
Definition coap_cache.h:46
COAP_API coap_cache_entry_t * coap_cache_get_by_pdu(coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based)
Searches for a cache-entry corresponding to pdu.
void(* coap_cache_app_data_free_callback_t)(void *data)
Callback to free off the app data when the cache-entry is being deleted / freed off.
Definition coap_cache.h:39
const coap_pdu_t * coap_cache_get_pdu(const coap_cache_entry_t *cache_entry)
Returns the PDU information stored in the coap_cache entry.
COAP_DEPRECATED void coap_cache_set_app_data(coap_cache_entry_t *cache_entry, void *data, coap_app_data_free_callback_t callback)
Stores data with the given cache entry.
coap_cache_key_t * coap_cache_derive_key_w_ignore(const coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based, const uint16_t *ignore_options, size_t ignore_count)
Calculates a cache-key for the given CoAP PDU.
void * coap_cache_get_app_data(const coap_cache_entry_t *cache_entry)
Returns any application-specific data that has been stored with cache_entry using the function coap_c...
COAP_API coap_cache_entry_t * coap_new_cache_entry(coap_session_t *session, const coap_pdu_t *pdu, coap_cache_record_pdu_t record_pdu, coap_cache_session_based_t session_based, unsigned int idle_time)
Create a new cache-entry hash keyed by cache-key derived from the PDU.
COAP_API void * coap_cache_set_app_data2(coap_cache_entry_t *cache_entry, void *data, coap_app_data_free_callback_t callback)
Stores data with the given cache_entry, returning the previously stored value or NULL.
coap_cache_session_based_t
Definition coap_cache.h:41
@ COAP_CACHE_RECORD_PDU
Definition coap_cache.h:48
@ COAP_CACHE_NOT_RECORD_PDU
Definition coap_cache.h:47
@ COAP_CACHE_NOT_SESSION_BASED
Definition coap_cache.h:42
@ COAP_CACHE_IS_SESSION_BASED
Definition coap_cache.h:43
void(* coap_app_data_free_callback_t)(void *data)
Callback to free off the app data when the entry is being deleted / freed off.
#define COAP_DEPRECATED
Definition libcoap.h:66
The CoAP stack's global state is stored in a coap_context_t object.
structure for CoAP PDUs
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...