shell_telnet.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_TELNET_H__
  7. #define SHELL_TELNET_H__
  8. #include <shell/shell.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. extern const struct shell_transport_api shell_telnet_transport_api;
  13. /** Line buffer structure. */
  14. struct shell_telnet_line_buf {
  15. /** Line buffer. */
  16. char buf[CONFIG_SHELL_TELNET_LINE_BUF_SIZE];
  17. /** Current line length. */
  18. uint16_t len;
  19. };
  20. /** TELNET-based shell transport. */
  21. struct shell_telnet {
  22. /** Handler function registered by shell. */
  23. shell_transport_handler_t shell_handler;
  24. /** Context registered by shell. */
  25. void *shell_context;
  26. /** Buffer for outgoing line. */
  27. struct shell_telnet_line_buf line_out;
  28. /** Network context of TELNET client. */
  29. struct net_context *client_ctx;
  30. /** RX packet FIFO. */
  31. struct k_fifo rx_fifo;
  32. /** The delayed work is used to send non-lf terminated output that has
  33. * been around for "too long". This will prove to be useful
  34. * to send the shell prompt for instance.
  35. */
  36. struct k_work_delayable send_work;
  37. struct k_work_sync work_sync;
  38. /** If set, no output is sent to the TELNET client. */
  39. bool output_lock;
  40. };
  41. #define SHELL_TELNET_DEFINE(_name) \
  42. static struct shell_telnet _name##_shell_telnet; \
  43. struct shell_transport _name = { \
  44. .api = &shell_telnet_transport_api, \
  45. .ctx = (struct shell_telnet *)&_name##_shell_telnet \
  46. }
  47. /**
  48. * @brief This function provides pointer to shell telnet backend instance.
  49. *
  50. * Function returns pointer to the shell telnet instance. This instance can be
  51. * next used with shell_execute_cmd function in order to test commands behavior.
  52. *
  53. * @returns Pointer to the shell instance.
  54. */
  55. const struct shell *shell_backend_telnet_get_ptr(void);
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* SHELL_TELNET_H__ */