Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
422 giacomo 1
/* atmclip.h - Classical IP over ATM */
2
 
3
/* Written 1995-1998 by Werner Almesberger, EPFL LRC/ICA */
4
 
5
 
6
#ifndef LINUX_ATMCLIP_H
7
#define LINUX_ATMCLIP_H
8
 
9
#include <linux/sockios.h>
10
#include <linux/atmioc.h>
11
 
12
 
13
#define RFC1483LLC_LEN  8               /* LLC+OUI+PID = 8 */
14
#define RFC1626_MTU     9180            /* RFC1626 default MTU */
15
 
16
#define CLIP_DEFAULT_IDLETIMER 1200     /* 20 minutes, see RFC1755 */
17
#define CLIP_CHECK_INTERVAL      10     /* check every ten seconds */
18
 
19
#define SIOCMKCLIP      _IO('a',ATMIOC_CLIP)    /* create IP interface */
20
 
21
#endif