ktp.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /** @file ktp.h
  2. *
  3. * @brief Klish Transfer Protocol
  4. */
  5. #ifndef _klish_ktp_h
  6. #define _klish_ktp_h
  7. #include <faux/msg.h>
  8. #define KTP_MAGIC 0x4b545020
  9. #define KTP_MAJOR 0x01
  10. #define KTP_MINOR 0x00
  11. typedef enum {
  12. KTP_NULL = '\0',
  13. KTP_STDIN = 'i',
  14. KTP_STDOUT = 'o',
  15. KTP_STDERR = 'e',
  16. KTP_CMD = 'c',
  17. KTP_CMD_ACK = 'C',
  18. KTP_COMPLETION = 'v',
  19. KTP_COMPLETION_ACK = 'V',
  20. KTP_HELP = 'h',
  21. KTP_HELP_ACK = 'H',
  22. KTP_NOTIFICATION = 'n',
  23. KTP_AUTH = 'a',
  24. KTP_AUTH_ACK = 'A',
  25. KTP_KEEPALIVE = 'k',
  26. } ktp_cmd_e;
  27. typedef enum {
  28. KTP_PARAM_NULL = '\0',
  29. KTP_PARAM_LINE = 'L',
  30. KTP_PARAM_ERROR = 'E',
  31. KTP_PARAM_RETCODE = 'R',
  32. } ktp_param_e;
  33. // Status field. Bitmap
  34. typedef enum {
  35. KTP_STATUS_NONE = (uint32_t)0x00000000,
  36. KTP_STATUS_ERROR = (uint32_t)0x00000001,
  37. KTP_STATUS_INCOMPLETED = (uint32_t)0x00000002,
  38. KTP_STATUS_INTERACTIVE = (uint32_t)0x00000100,
  39. KTP_STATUS_DRY_RUN = (uint32_t)0x00010000,
  40. KTP_STATUS_EXIT = (uint32_t)0x80000000,
  41. } ktp_status_e;
  42. #define KTP_STATUS_IS_ERROR(status) (status & KTP_STATUS_ERROR)
  43. #define KTP_STATUS_IS_INCOMPLETED(status) (status & KTP_STATUS_INCOMPLETED)
  44. #define KTP_STATUS_IS_INTERACTIVE(status) (status & KTP_STATUS_INTERACTIVE)
  45. #define KTP_STATUS_IS_DRY_RUN(status) (status & KTP_STATUS_DRY_RUN)
  46. #define KTP_STATUS_IS_EXIT(status) (status & KTP_STATUS_EXIT)
  47. #endif // _klish_ktp_h