ppp-comp.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * ppp-comp.h - Definitions for doing PPP packet compression.
  4. *
  5. * Copyright 1994-1998 Paul Mackerras.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. */
  11. #ifndef _UAPI_NET_PPP_COMP_H
  12. #define _UAPI_NET_PPP_COMP_H
  13. /*
  14. * CCP codes.
  15. */
  16. #define CCP_CONFREQ 1
  17. #define CCP_CONFACK 2
  18. #define CCP_TERMREQ 5
  19. #define CCP_TERMACK 6
  20. #define CCP_RESETREQ 14
  21. #define CCP_RESETACK 15
  22. /*
  23. * Max # bytes for a CCP option
  24. */
  25. #define CCP_MAX_OPTION_LENGTH 32
  26. /*
  27. * Parts of a CCP packet.
  28. */
  29. #define CCP_CODE(dp) ((dp)[0])
  30. #define CCP_ID(dp) ((dp)[1])
  31. #define CCP_LENGTH(dp) (((dp)[2] << 8) + (dp)[3])
  32. #define CCP_HDRLEN 4
  33. #define CCP_OPT_CODE(dp) ((dp)[0])
  34. #define CCP_OPT_LENGTH(dp) ((dp)[1])
  35. #define CCP_OPT_MINLEN 2
  36. /*
  37. * Definitions for BSD-Compress.
  38. */
  39. #define CI_BSD_COMPRESS 21 /* config. option for BSD-Compress */
  40. #define CILEN_BSD_COMPRESS 3 /* length of config. option */
  41. /* Macros for handling the 3rd byte of the BSD-Compress config option. */
  42. #define BSD_NBITS(x) ((x) & 0x1F) /* number of bits requested */
  43. #define BSD_VERSION(x) ((x) >> 5) /* version of option format */
  44. #define BSD_CURRENT_VERSION 1 /* current version number */
  45. #define BSD_MAKE_OPT(v, n) (((v) << 5) | (n))
  46. #define BSD_MIN_BITS 9 /* smallest code size supported */
  47. #define BSD_MAX_BITS 15 /* largest code size supported */
  48. /*
  49. * Definitions for Deflate.
  50. */
  51. #define CI_DEFLATE 26 /* config option for Deflate */
  52. #define CI_DEFLATE_DRAFT 24 /* value used in original draft RFC */
  53. #define CILEN_DEFLATE 4 /* length of its config option */
  54. #define DEFLATE_MIN_SIZE 9
  55. #define DEFLATE_MAX_SIZE 15
  56. #define DEFLATE_METHOD_VAL 8
  57. #define DEFLATE_SIZE(x) (((x) >> 4) + 8)
  58. #define DEFLATE_METHOD(x) ((x) & 0x0F)
  59. #define DEFLATE_MAKE_OPT(w) ((((w) - 8) << 4) + DEFLATE_METHOD_VAL)
  60. #define DEFLATE_CHK_SEQUENCE 0
  61. /*
  62. * Definitions for MPPE.
  63. */
  64. #define CI_MPPE 18 /* config option for MPPE */
  65. #define CILEN_MPPE 6 /* length of config option */
  66. /*
  67. * Definitions for other, as yet unsupported, compression methods.
  68. */
  69. #define CI_PREDICTOR_1 1 /* config option for Predictor-1 */
  70. #define CILEN_PREDICTOR_1 2 /* length of its config option */
  71. #define CI_PREDICTOR_2 2 /* config option for Predictor-2 */
  72. #define CILEN_PREDICTOR_2 2 /* length of its config option */
  73. #endif /* _UAPI_NET_PPP_COMP_H */