Files
linux-apfs/include/linux/if_phonet.h
T

20 lines
406 B
C
Raw Normal View History

2008-09-22 19:51:15 -07:00
/*
* 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
2008-09-22 19:51:15 -07:00
#define PHONET_MIN_MTU 6 /* pn_length = 0 */
#define PHONET_MAX_MTU 65541 /* pn_length = 0xffff */
2008-09-22 19:51:15 -07:00
#define PHONET_DEV_MTU PHONET_MAX_MTU
2008-09-22 20:08:04 -07:00
#ifdef __KERNEL__
extern struct header_ops phonet_header_ops;
#endif
#endif