buf.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright Runtime.io 2018. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_MGMT_BUF_H_
  7. #define ZEPHYR_INCLUDE_MGMT_BUF_H_
  8. #include <inttypes.h>
  9. #include "tinycbor/cbor.h"
  10. #include "tinycbor/cbor_buf_writer.h"
  11. struct net_buf;
  12. struct cbor_nb_reader {
  13. struct cbor_decoder_reader r;
  14. struct net_buf *nb;
  15. };
  16. struct cbor_nb_writer {
  17. struct cbor_encoder_writer enc;
  18. struct net_buf *nb;
  19. };
  20. /**
  21. * @brief Allocates a net_buf for holding an mcumgr request or response.
  22. *
  23. * @return A newly-allocated buffer net_buf on success;
  24. * NULL on failure.
  25. */
  26. struct net_buf *mcumgr_buf_alloc(void);
  27. /**
  28. * @brief Frees an mcumgr net_buf
  29. *
  30. * @param nb The net_buf to free.
  31. */
  32. void mcumgr_buf_free(struct net_buf *nb);
  33. /**
  34. * @brief Initializes a CBOR writer with the specified net_buf.
  35. *
  36. * @param cnw The writer to initialize.
  37. * @param nb The net_buf that the writer will write to.
  38. */
  39. void cbor_nb_writer_init(struct cbor_nb_writer *cnw,
  40. struct net_buf *nb);
  41. /**
  42. * @brief Initializes a CBOR reader with the specified net_buf.
  43. *
  44. * @param cnr The reader to initialize.
  45. * @param nb The net_buf that the reader will read from.
  46. */
  47. void cbor_nb_reader_init(struct cbor_nb_reader *cnr,
  48. struct net_buf *nb);
  49. #endif