coap_link_format.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. *
  9. * @brief CoAP implementation for Zephyr.
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_COAP_LINK_FORMAT_H_
  12. #define ZEPHYR_INCLUDE_NET_COAP_LINK_FORMAT_H_
  13. /**
  14. * @addtogroup coap COAP Library
  15. * @{
  16. */
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * This resource should be added before all other resources that should be
  22. * included in the responses of the .well-known/core resource.
  23. */
  24. #define COAP_WELL_KNOWN_CORE_PATH \
  25. ((const char * const[]) { ".well-known", "core", NULL })
  26. int coap_well_known_core_get(struct coap_resource *resource,
  27. struct coap_packet *request,
  28. struct coap_packet *response,
  29. uint8_t *data, uint16_t len);
  30. /**
  31. * In case you want to add attributes to the resources included in the
  32. * 'well-known/core' "virtual" resource, the 'user_data' field should point
  33. * to a valid coap_core_metadata structure.
  34. */
  35. struct coap_core_metadata {
  36. const char * const *attributes;
  37. void *user_data;
  38. };
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. /**
  43. * @}
  44. */
  45. #endif /* ZEPHYR_INCLUDE_NET_COAP_LINK_FORMAT_H_ */