Home
last modified time | relevance | path

Searched refs:coap_subscription_t (Results 1 – 6 of 6) sorted by relevance

/net-tools-latest/libcoap/include/coap/
Dsubscribe.h54 typedef struct coap_subscription_t { struct
55 struct coap_subscription_t *next; /**< next element in linked list */ argument
66 } coap_subscription_t; argument
68 void coap_subscription_init(coap_subscription_t *);
Dresource.h88 coap_subscription_t *subscribers; /**< list of observers for this resource */
295 coap_subscription_t *coap_add_observer(coap_resource_t *resource,
309 coap_subscription_t *coap_find_observer(coap_resource_t *resource,
Dlwippools.h54 LWIP_MEMPOOL(COAP_subscription, MEMP_NUM_COAP_SUBSCRIPTION, sizeof(coap_subscription_t), "COAP_subs…
/net-tools-latest/libcoap/src/
Dsubscribe.c20 coap_subscription_init(coap_subscription_t *s) { in coap_subscription_init()
22 memset(s, 0, sizeof(coap_subscription_t)); in coap_subscription_init()
Dresource.c46 MEMB(subscription_storage, coap_subscription_t, COAP_MAX_SUBSCRIBERS);
53 static inline coap_subscription_t *
59 coap_free_subscription(coap_subscription_t *subscription) { in coap_free_subscription()
406 coap_subscription_t *obs, *otmp;
522 coap_subscription_t *
525 coap_subscription_t *s;
540 coap_subscription_t *
545 coap_subscription_t *s;
581 coap_subscription_t *s;
594 coap_subscription_t *s;
[all …]
Dnet.c1439 coap_subscription_t *subscription; in handle_request()