if_plip.h 596 B

123456789101112131415161718192021222324252627
  1. /*
  2. * NET3 PLIP tuning facilities for the new Niibe PLIP.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. *
  9. */
  10. #ifndef _LINUX_IF_PLIP_H
  11. #define _LINUX_IF_PLIP_H
  12. #include <linux/sockios.h>
  13. #define SIOCDEVPLIP SIOCDEVPRIVATE
  14. struct plipconf {
  15. unsigned short pcmd;
  16. unsigned long nibble;
  17. unsigned long trigger;
  18. };
  19. #define PLIP_GET_TIMEOUT 0x1
  20. #define PLIP_SET_TIMEOUT 0x2
  21. #endif