libcoap 4.3.5-develop-e5f268f
Loading...
Searching...
No Matches
coap_proxy_internal.h
Go to the documentation of this file.
1/*
2 * coap_proxy_internal.h -- Proxy functions for libcoap
3 *
4 * Copyright (C) 2024-2025 Jon Shallow <supjps-libcoap@jpshallow.com>
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_PROXY_INTERNAL_H_
18#define COAP_PROXY_INTERNAL_H_
19
20#include "coap_internal.h"
21
22#if COAP_PROXY_SUPPORT
30/* Client <--> Proxy-Server | Proxy-Client <--> Server */
31
32typedef struct coap_proxy_cache_t {
33 UT_hash_handle hh;
34 coap_cache_key_t cache_req;
35 coap_pdu_t *req_pdu;
36 coap_pdu_t *rsp_pdu;
37 coap_tick_t expire;
38 uint64_t etag;
39 unsigned ref;
40} coap_proxy_cache_t;
41
42typedef struct coap_proxy_req_t {
43 struct coap_proxy_req_t *next;
44 coap_pdu_t *pdu;
45 coap_resource_t *resource;
46 coap_session_t *incoming;
47 coap_bin_const_t *token_used;
48 coap_cache_key_t *cache_key;
49 coap_proxy_cache_t *proxy_cache;
50 coap_mid_t mid;
51 unsigned doing_observe;
52} coap_proxy_req_t;
53
54struct coap_proxy_list_t {
55 coap_session_t *ongoing;
56 coap_session_t *incoming;
57 coap_proxy_req_t *proxy_req;
58 coap_proxy_cache_t *rsp_cache; /* Response cache list */
59 coap_uri_t uri;
60 uint8_t *uri_host_keep;
61 coap_tick_t idle_timeout_ticks;
64 coap_tick_t last_used;
65};
66
67typedef enum {
68 COAP_PROXY_SUBS_ALL,
69 COAP_PROXY_SUBS_TOKEN,
70 COAP_PROXY_SUBS_MID,
71} coap_proxy_subs_delete_t;
72
78void coap_proxy_cleanup(coap_context_t *context);
79
90int coap_proxy_check_timeouts(coap_context_t *context, coap_tick_t now,
91 coap_tick_t *tim_rem);
92
101int coap_proxy_remove_association(coap_session_t *session, int send_failure);
102
128int coap_proxy_forward_request_lkd(coap_session_t *session,
129 const coap_pdu_t *request,
130 coap_pdu_t *response,
131 coap_resource_t *resource,
132 coap_cache_key_t *cache_key,
133 coap_proxy_server_list_t *server_list);
134
149coap_response_t coap_proxy_forward_response_lkd(coap_session_t *session,
150 const coap_pdu_t *received,
151 coap_cache_key_t **cache_key);
152
174coap_session_t *coap_new_client_session_proxy_lkd(coap_context_t *context,
175 coap_proxy_server_list_t *server_list);
176
186coap_mid_t coap_proxy_local_write(coap_session_t *session, coap_pdu_t *pdu);
187
198struct coap_proxy_req_t *coap_proxy_map_outgoing_request(coap_session_t *ongoing,
199 const coap_pdu_t *received,
200 coap_proxy_list_t **proxy_entry);
201
213void coap_proxy_process_incoming(coap_session_t *session,
214 coap_pdu_t *rcvd, void *body_free,
215 coap_proxy_req_t *proxy_req,
216 coap_proxy_list_t *proxy_entry);
217
225void coap_proxy_del_req(coap_proxy_list_t *proxy_entry, coap_proxy_req_t *proxy_req);
226
236void coap_delete_proxy_subscriber(coap_session_t *session, coap_bin_const_t *token,
237 coap_mid_t mid, coap_proxy_subs_delete_t type);
238
241#define PROXY_CACHE_ADD(e, obj) \
242 HASH_ADD(hh, (e), cache_req, sizeof((obj)->cache_req), (obj))
243
244#define PROXY_CACHE_DELETE(e, obj) \
245 HASH_DELETE(hh, (e), (obj))
246
247#define PROXY_CACHE_ITER(e, el, rtmp) \
248 HASH_ITER(hh, (e), el, rtmp)
249
250#define PROXY_CACHE_ITER_SAFE(e, el, rtmp) \
251 for ((el) = (e); (el) && ((rtmp) = (el)->hh.next, 1); (el) = (rtmp))
252
253#define PROXY_CACHE_FIND(e, k, res) { \
254 HASH_FIND(hh, (e), (k), sizeof(*k), (res)); \
255 }
256
257#endif /* COAP_PROXY_SUPPORT */
258#endif /* COAP_PROXY_INTERNAL_H_ */
struct coap_proxy_list_t coap_proxy_list_t
Proxy information.
Pulls together all the internal only header files.
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
Definition coap_time.h:143
coap_response_t
Definition coap_net.h:48
int coap_mid_t
coap_mid_t is used to store the CoAP Message ID of a CoAP PDU.
Definition coap_pdu.h:264
CoAP binary data definition with const data.
Definition coap_str.h:64
The CoAP stack's global state is stored in a coap_context_t object.
structure for CoAP PDUs
Abstraction of resource that can be attached to coap_context_t.
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...
Representation of parsed URI.
Definition coap_uri.h:68