libcoap 4.3.1
coap_cache_internal.h
Go to the documentation of this file.
1/*
2 * coap_cache_internal.h -- Cache functions for libcoap
3 *
4 * Copyright (C) 2019--2020 Olaf Bergmann <bergmann@tzi.org> and others
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_CACHE_INTERNAL_H_
18#define COAP_CACHE_INTERNAL_H_
19
20#include "coap_internal.h"
21#include "coap_io.h"
22
23#if COAP_SERVER_SUPPORT
31/* Holds a digest in binary typically sha256 except for notls */
32typedef struct coap_digest_t {
33 uint8_t key[32];
35
37 uint8_t key[32];
38};
39
41 UT_hash_handle hh;
45 void* app_data;
47 unsigned int idle_timeout;
49};
50
59
60typedef void coap_digest_ctx_t;
61
70
80
93 const uint8_t *data,
94 size_t data_len
95 );
96
109 coap_digest_t *digest_buffer);
110
113#endif /* COAP_SERVER_SUPPORT */
114
115#endif /* COAP_CACHE_INTERNAL_H_ */
Pulls together all the internal only header files.
Default network I/O functions.
void coap_digest_free(coap_digest_ctx_t *digest_ctx)
Free off coap_digest_ctx_t.
struct coap_digest_t coap_digest_t
int coap_digest_final(coap_digest_ctx_t *digest_ctx, coap_digest_t *digest_buffer)
Finalize the coap_digest information into the provided digest_buffer.
int coap_digest_update(coap_digest_ctx_t *digest_ctx, const uint8_t *data, size_t data_len)
Update the coap_digest information with the next chunk of data.
void coap_digest_ctx_t
void coap_expire_cache_entries(coap_context_t *context)
Expire coap_cache_entry_t entries.
coap_digest_ctx_t * coap_digest_setup(void)
Initialize a coap_digest.
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:35
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
Definition: coap_time.h:127
coap_session_t * session
coap_cache_app_data_free_callback_t callback
coap_tick_t expire_ticks
void * app_data
unsigned int idle_timeout
coap_cache_key_t * cache_key
coap_pdu_t * pdu
UT_hash_handle hh
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...