blob: d70034bcec059800d9d972a6d37096b38cb4809c [file] [log] [blame]
Remi Denis-Courmontbce7b152008-09-22 19:51:15 -07001/*
2 * File: if_phonet.h
3 *
4 * Phonet interface kernel definitions
5 *
6 * Copyright (C) 2008 Nokia Corporation. All rights reserved.
7 */
Remi Denis-Courmont6e50e8a2008-10-01 01:30:19 -07008#ifndef LINUX_IF_PHONET_H
9#define LINUX_IF_PHONET_H
Remi Denis-Courmontbce7b152008-09-22 19:51:15 -070010
Remi Denis-Courmont6e50e8a2008-10-01 01:30:19 -070011#define PHONET_MIN_MTU 6 /* pn_length = 0 */
12#define PHONET_MAX_MTU 65541 /* pn_length = 0xffff */
Remi Denis-Courmontbce7b152008-09-22 19:51:15 -070013#define PHONET_DEV_MTU PHONET_MAX_MTU
Remi Denis-Courmont5f770762008-09-22 20:08:04 -070014
15#ifdef __KERNEL__
16extern struct header_ops phonet_header_ops;
17#endif
Remi Denis-Courmont6e50e8a2008-10-01 01:30:19 -070018
19#endif