2008-09-22 22:51:15 -04:00
|
|
|
/*
|
|
|
|
* 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
|
2008-09-22 23:08:04 -04:00
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
extern struct header_ops phonet_header_ops;
|
|
|
|
#endif
|