mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 05:00:55 +07:00
15 lines
330 B
C
15 lines
330 B
C
|
/*
|
||
|
* File: if_phonet.h
|
||
|
*
|
||
|
* Phonet interface kernel definitions
|
||
|
*
|
||
|
* Copyright (C) 2008 Nokia Corporation. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#define PHONET_HEADER_LEN 8 /* Phonet header length */
|
||
|
|
||
|
#define PHONET_MIN_MTU 6
|
||
|
/* 6 bytes header + 65535 bytes payload */
|
||
|
#define PHONET_MAX_MTU 65541
|
||
|
#define PHONET_DEV_MTU PHONET_MAX_MTU
|