/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

  1. /*
  2. * File: if_phonet.h
  3. *
  4. * Phonet interface kernel definitions
  5. *
  6. * Copyright (C) 2008 Nokia Corporation. All rights reserved.
  7. */
  8. #ifndef LINUX_IF_PHONET_H
  9. #define LINUX_IF_PHONET_H
  10. #define PHONET_MIN_MTU 6 /* pn_length = 0 */
  11. #define PHONET_MAX_MTU 65541 /* pn_length = 0xffff */
  12. #define PHONET_DEV_MTU PHONET_MAX_MTU
  13. #ifdef __KERNEL__
  14. extern struct header_ops phonet_header_ops;
  15. #endif
  16. #endif