June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: /* 02: * NET3 PLIP tuning facilities for the new Niibe PLIP. 03: * 04: * This program is free software; you can redistribute it and/or 05: * modify it under the terms of the GNU General Public License 06: * as published by the Free Software Foundation; either version 07: * 2 of the License, or (at your option) any later version. 08: * 09: */ 10: 11: #ifndef _LINUX_IF_PLIP_H 12: #define _LINUX_IF_PLIP_H 13: 14: #include <linux/sockios.h> 15: 16: #define SIOCDEVPLIP SIOCDEVPRIVATE 17: 18: struct plipconf { 19: unsigned short pcmd; 20: unsigned long nibble; 21: unsigned long trigger; 22: }; 23: 24: #define PLIP_GET_TIMEOUT 0x1 25: #define PLIP_SET_TIMEOUT 0x2 26: 27: #endif 28: