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.
17 lines
376 B
C
17 lines
376 B
C
/*
|
|
* File: if_phonet.h
|
|
*
|
|
* Phonet interface kernel definitions
|
|
*
|
|
* Copyright (C) 2008 Nokia Corporation. All rights reserved.
|
|
*/
|
|
#ifndef _UAPILINUX_IF_PHONET_H
|
|
#define _UAPILINUX_IF_PHONET_H
|
|
|
|
#define PHONET_MIN_MTU 6 /* pn_length = 0 */
|
|
#define PHONET_MAX_MTU 65541 /* pn_length = 0xffff */
|
|
#define PHONET_DEV_MTU PHONET_MAX_MTU
|
|
|
|
|
|
#endif /* _UAPILINUX_IF_PHONET_H */
|