libcoap 4.3.5-develop-146e0bb
Loading...
Searching...
No Matches
coap_subscribe_internal.h
Go to the documentation of this file.
1/*
2 * coap_subscribe_internal.h -- Structures, Enums & Functions that are not
3 * exposed to application programming
4 *
5 * Copyright (C) 2010-2026 Olaf Bergmann <bergmann@tzi.org>
6 *
7 * SPDX-License-Identifier: BSD-2-Clause
8 *
9 * This file is part of the CoAP library libcoap. Please see README for terms
10 * of use.
11 */
12
18#ifndef COAP_SUBSCRIBE_INTERNAL_H_
19#define COAP_SUBSCRIBE_INTERNAL_H_
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
32#if COAP_SERVER_SUPPORT
38#ifndef COAP_OBS_MAX_NON
39#define COAP_OBS_MAX_NON 5
40#endif /* COAP_OBS_MAX_NON */
41#if COAP_OBS_MAX_NON > 255
42#error COAP_OBS_MAX_NON is too large
43#endif /* COAP_OBS_MAX_NON > 255 */
44
50#ifndef COAP_OBS_MAX_FAIL
51#define COAP_OBS_MAX_FAIL 1
52#endif /* COAP_OBS_MAX_FAIL */
53#if COAP_OBS_MAX_FAIL > 255
54#error COAP_OBS_MAX_FAIL is too large
55#endif /* COAP_OBS_MAX_FAIL > 255 */
56
59 struct coap_subscription_t *next;
60 struct coap_session_t *session;
62 uint8_t non_cnt;
63 uint8_t fail_cnt;
64 uint8_t dirty;
67 coap_cache_key_t *cache_key;
68 coap_pdu_t *pdu;
69};
70
71void coap_subscription_init(coap_subscription_t *);
72
80void coap_handle_failed_notify(coap_context_t *context,
81 coap_session_t *session,
82 const coap_bin_const_t *token);
83
98coap_subscription_t *coap_add_observer(coap_resource_t *resource,
99 coap_session_t *session,
100 const coap_bin_const_t *token,
101 const coap_pdu_t *pdu);
102
113coap_subscription_t *coap_find_observer(coap_resource_t *resource,
114 coap_session_t *session,
115 const coap_bin_const_t *token);
116
125void coap_touch_observer(coap_context_t *context,
126 coap_session_t *session,
127 const coap_bin_const_t *token);
128
141int coap_delete_observer(coap_resource_t *resource,
142 coap_session_t *session,
143 const coap_bin_const_t *token);
144
159int coap_delete_observer_request(coap_resource_t *resource,
160 coap_session_t *session,
161 const coap_bin_const_t *token,
162 coap_pdu_t *request);
163
170void coap_delete_observers(coap_context_t *context, coap_session_t *session);
171
180void coap_delete_observer_internal(coap_resource_t *resource,
181 coap_session_t *session,
182 coap_subscription_t *subscription);
183
195int coap_resource_notify_observers_lkd(coap_resource_t *resource,
196 const coap_string_t *query);
197
206void coap_check_notify_lkd(coap_context_t *context);
207
213void coap_persist_cleanup(coap_context_t *context);
214
235coap_subscription_t *coap_persist_observe_add_lkd(coap_context_t *context,
236 coap_proto_t e_proto,
237 const coap_address_t *e_listen_addr,
238 const coap_addr_tuple_t *s_addr_info,
239 const coap_bin_const_t *raw_packet,
240 const coap_bin_const_t *oscore_info);
241
261int coap_persist_startup_lkd(coap_context_t *context,
262 const char *dyn_resource_save_file,
263 const char *observe_save_file,
264 const char *obs_cnt_save_file,
265 uint32_t save_freq);
266
281void coap_persist_stop_lkd(coap_context_t *context);
282
283#endif /* COAP_SERVER_SUPPORT */
284
285#if COAP_CLIENT_SUPPORT
286
302int coap_cancel_observe_lkd(coap_session_t *session, coap_binary_t *token,
303 coap_pdu_type_t message_type);
304
305#endif /* COAP_CLIENT_SUPPORT */
306
309#ifdef __cplusplus
310}
311#endif
312
313#endif /* COAP_SUBSCRIBE_INTERNAL_H_ */
struct coap_cache_key_t coap_cache_key_t
struct coap_subscription_t coap_subscription_t
struct coap_resource_t coap_resource_t
coap_proto_t
CoAP protocol types Note: coap_layers_coap[] needs updating if extended.
Definition coap_pdu.h:316
coap_pdu_type_t
CoAP PDU message type definitions.
Definition coap_pdu.h:70
Multi-purpose address abstraction.
CoAP binary data definition with const data.
Definition coap_str.h:65
CoAP binary data definition.
Definition coap_str.h:57
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...
coap_context_t * context
session's context
CoAP string data definition.
Definition coap_str.h:39