logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

atmclip.h (576B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /* atmclip.h - Classical IP over ATM */
  3. /* Written 1995-1998 by Werner Almesberger, EPFL LRC/ICA */
  4. #ifndef LINUX_ATMCLIP_H
  5. #define LINUX_ATMCLIP_H
  6. #include <linux/sockios.h>
  7. #include <linux/atmioc.h>
  8. #define RFC1483LLC_LEN 8 /* LLC+OUI+PID = 8 */
  9. #define RFC1626_MTU 9180 /* RFC1626 default MTU */
  10. #define CLIP_DEFAULT_IDLETIMER 1200 /* 20 minutes, see RFC1755 */
  11. #define CLIP_CHECK_INTERVAL 10 /* check every ten seconds */
  12. #define SIOCMKCLIP _IO('a',ATMIOC_CLIP) /* create IP interface */
  13. #endif