rose.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * These are the public elements of the Linux kernel Rose implementation.
  4. * For kernel AX.25 see the file ax25.h. This file requires ax25.h for the
  5. * definition of the ax25_address structure.
  6. */
  7. #ifndef ROSE_KERNEL_H
  8. #define ROSE_KERNEL_H
  9. #include <linux/socket.h>
  10. #include <linux/ax25.h>
  11. #define ROSE_MTU 251
  12. #define ROSE_MAX_DIGIS 6
  13. #define ROSE_DEFER 1
  14. #define ROSE_T1 2
  15. #define ROSE_T2 3
  16. #define ROSE_T3 4
  17. #define ROSE_IDLE 5
  18. #define ROSE_QBITINCL 6
  19. #define ROSE_HOLDBACK 7
  20. #define SIOCRSGCAUSE (SIOCPROTOPRIVATE+0)
  21. #define SIOCRSSCAUSE (SIOCPROTOPRIVATE+1)
  22. #define SIOCRSL2CALL (SIOCPROTOPRIVATE+2)
  23. #define SIOCRSSL2CALL (SIOCPROTOPRIVATE+2)
  24. #define SIOCRSACCEPT (SIOCPROTOPRIVATE+3)
  25. #define SIOCRSCLRRT (SIOCPROTOPRIVATE+4)
  26. #define SIOCRSGL2CALL (SIOCPROTOPRIVATE+5)
  27. #define SIOCRSGFACILITIES (SIOCPROTOPRIVATE+6)
  28. #define ROSE_DTE_ORIGINATED 0x00
  29. #define ROSE_NUMBER_BUSY 0x01
  30. #define ROSE_INVALID_FACILITY 0x03
  31. #define ROSE_NETWORK_CONGESTION 0x05
  32. #define ROSE_OUT_OF_ORDER 0x09
  33. #define ROSE_ACCESS_BARRED 0x0B
  34. #define ROSE_NOT_OBTAINABLE 0x0D
  35. #define ROSE_REMOTE_PROCEDURE 0x11
  36. #define ROSE_LOCAL_PROCEDURE 0x13
  37. #define ROSE_SHIP_ABSENT 0x39
  38. typedef struct {
  39. char rose_addr[5];
  40. } rose_address;
  41. struct sockaddr_rose {
  42. __kernel_sa_family_t srose_family;
  43. rose_address srose_addr;
  44. ax25_address srose_call;
  45. int srose_ndigis;
  46. ax25_address srose_digi;
  47. };
  48. struct full_sockaddr_rose {
  49. __kernel_sa_family_t srose_family;
  50. rose_address srose_addr;
  51. ax25_address srose_call;
  52. unsigned int srose_ndigis;
  53. ax25_address srose_digis[ROSE_MAX_DIGIS];
  54. };
  55. struct rose_route_struct {
  56. rose_address address;
  57. unsigned short mask;
  58. ax25_address neighbour;
  59. char device[16];
  60. unsigned char ndigis;
  61. ax25_address digipeaters[AX25_MAX_DIGIS];
  62. };
  63. struct rose_cause_struct {
  64. unsigned char cause;
  65. unsigned char diagnostic;
  66. };
  67. struct rose_facilities_struct {
  68. rose_address source_addr, dest_addr;
  69. ax25_address source_call, dest_call;
  70. unsigned char source_ndigis, dest_ndigis;
  71. ax25_address source_digis[ROSE_MAX_DIGIS];
  72. ax25_address dest_digis[ROSE_MAX_DIGIS];
  73. unsigned int rand;
  74. rose_address fail_addr;
  75. ax25_address fail_call;
  76. };
  77. #endif