patch-pppd_ccp_h 963 B

1234567891011121314151617181920
  1. --- ppp-2.4.4.orig/pppd/ccp.h 2004-11-04 11:02:26.000000000 +0100
  2. +++ ppp-2.4.4/pppd/ccp.h 2009-06-05 19:12:00.000000000 +0200
  3. @@ -37,9 +37,17 @@ typedef struct ccp_options {
  4. bool predictor_2; /* do Predictor-2? */
  5. bool deflate_correct; /* use correct code for deflate? */
  6. bool deflate_draft; /* use draft RFC code for deflate? */
  7. + bool lzs; /* do Stac LZS? */
  8. + bool mppc; /* do MPPC? */
  9. bool mppe; /* do MPPE? */
  10. + bool mppe_40; /* allow 40 bit encryption? */
  11. + bool mppe_56; /* allow 56 bit encryption? */
  12. + bool mppe_128; /* allow 128 bit encryption? */
  13. + bool mppe_stateless; /* allow stateless encryption */
  14. u_short bsd_bits; /* # bits/code for BSD Compress */
  15. u_short deflate_size; /* lg(window size) for Deflate */
  16. + u_short lzs_mode; /* LZS check mode */
  17. + u_short lzs_hists; /* number of LZS histories */
  18. short method; /* code for chosen compression method */
  19. } ccp_options;