forked from Qortal/Brooklyn
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
22 lines
513 B
C
22 lines
513 B
C
/* atmclip.h - Classical IP over ATM */
|
|
|
|
/* Written 1995-1998 by Werner Almesberger, EPFL LRC/ICA */
|
|
|
|
|
|
#ifndef LINUX_ATMCLIP_H
|
|
#define LINUX_ATMCLIP_H
|
|
|
|
#include <linux/sockios.h>
|
|
#include <linux/atmioc.h>
|
|
|
|
|
|
#define RFC1483LLC_LEN 8 /* LLC+OUI+PID = 8 */
|
|
#define RFC1626_MTU 9180 /* RFC1626 default MTU */
|
|
|
|
#define CLIP_DEFAULT_IDLETIMER 1200 /* 20 minutes, see RFC1755 */
|
|
#define CLIP_CHECK_INTERVAL 10 /* check every ten seconds */
|
|
|
|
#define SIOCMKCLIP _IO('a',ATMIOC_CLIP) /* create IP interface */
|
|
|
|
#endif
|