tftp.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (c) 2020 InnBlue
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file tftp.h
  7. *
  8. * @brief Zephyr TFTP Implementation
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_TFTP_H_
  11. #define ZEPHYR_INCLUDE_NET_TFTP_H_
  12. #include <zephyr.h>
  13. #include <net/socket.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. struct tftpc {
  18. uint8_t *user_buf;
  19. uint32_t user_buf_size;
  20. };
  21. /* TFTP Client Error codes. */
  22. #define TFTPC_SUCCESS 0
  23. #define TFTPC_DUPLICATE_DATA -1
  24. #define TFTPC_BUFFER_OVERFLOW -2
  25. #define TFTPC_UNKNOWN_FAILURE -3
  26. #define TFTPC_REMOTE_ERROR -4
  27. #define TFTPC_RETRIES_EXHAUSTED -5
  28. /* @brief This function gets "file" from the remote server.
  29. *
  30. * If the file is successfully received its size will be returned in
  31. * `client->user_buf_size` parameter.
  32. *
  33. * @param server Control Block that represents the remote server.
  34. * @param client Client Buffer Information.
  35. * @param remote_file Name of the remote file to get.
  36. * @param mode TFTP Client "mode" setting
  37. *
  38. * @return TFTPC_SUCCESS if the operation completed successfully.
  39. * TFTPC_BUFFER_OVERFLOW if the file is larger than the user buffer.
  40. * TFTPC_REMOTE_ERROR if the server failed to process our request.
  41. * TFTPC_RETRIES_EXHAUSTED if the client timed out waiting for server.
  42. */
  43. int tftp_get(struct sockaddr *server, struct tftpc *client,
  44. const char *remote_file, const char *mode);
  45. #endif /* ZEPHYR_INCLUDE_NET_TFTP_H_ */