/include/linux/if_phonet.h
https://gitlab.com/simplified-mandatory-access-control-kernel/ossecus-simplified-mandatory-access-control-kernel · C Header · 19 lines · 9 code · 3 blank · 7 comment · 0 complexity · 48f375784a3ae5e1723388eb1df3cc8d MD5 · raw file
- /*
- * File: if_phonet.h
- *
- * Phonet interface kernel definitions
- *
- * Copyright (C) 2008 Nokia Corporation. All rights reserved.
- */
- #ifndef LINUX_IF_PHONET_H
- #define LINUX_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
- #ifdef __KERNEL__
- extern struct header_ops phonet_header_ops;
- #endif
- #endif