ppphdlc.h 294 B

123456789101112131415
  1. /*
  2. * ppphdlc.h
  3. *
  4. * Copied from C. S. Ananians ppp_fcs.h
  5. */
  6. #ifndef _PPTPD_PPPHDLC_H
  7. #define _PPTPD_PPPHDLC_H
  8. #define PPPINITFCS16 0xffff /* Initial FCS value */
  9. #define PPPGOODFCS16 0xf0b8 /* Good final FCS value */
  10. extern u_int16_t fcstab[256];
  11. #endif /* !_PPTPD_PPPHDLC_H */