smp_udp.h 608 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2019, Prevas A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief UDP transport for the mcumgr SMP protocol.
  9. */
  10. #ifndef ZEPHYR_INCLUDE_MGMT_SMP_UDP_H_
  11. #define ZEPHYR_INCLUDE_MGMT_SMP_UDP_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @brief Opens a UDP socket for the SMP UDP service.
  17. *
  18. * @return 0 on success; negative error code on failure.
  19. */
  20. int smp_udp_open(void);
  21. /**
  22. * @brief Closes the UDP socket for the SMP UDP service.
  23. *
  24. * @return 0 on success; negative error code on failure.
  25. */
  26. int smp_udp_close(void);
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif