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: /* atmclip.h - Classical IP over ATM */ 02: 03: /* Written 1995-1998 by Werner Almesberger, EPFL LRC/ICA */ 04: 05: 06: #ifndef LINUX_ATMCLIP_H 07: #define LINUX_ATMCLIP_H 08: 09: #include <linux/sockios.h> 10: #include <linux/atmioc.h> 11: 12: 13: #define RFC1483LLC_LEN 8 /* LLC+OUI+PID = 8 */ 14: #define RFC1626_MTU 9180 /* RFC1626 default MTU */ 15: 16: #define CLIP_DEFAULT_IDLETIMER 1200 /* 20 minutes, see RFC1755 */ 17: #define CLIP_CHECK_INTERVAL 10 /* check every ten seconds */ 18: 19: #define SIOCMKCLIP _IO('a',ATMIOC_CLIP) /* create IP interface */ 20: 21: #endif 22: