This is ppp_str.h in view mode; [Download] [Up]
/* ppp_str.h - streams version include file defines ioctl calls for MRU, COMPPROT and ASYNCMAP */ /* * Copyright (C) 1990 Brad K. Clements, All Rights Reserved, See copyright statement in Readme.streams */ #include <sys/ioccom.h> #define SIOCSIFCOMPAC _IOW(p, 130, char) #define SIOCSIFCOMPPROT _IOW(p, 131, char) #define SIOCSIFMRU _IOW(p, 132, int) #define SIOCGIFMRU _IOR(p, 133, int) #define SIOCGIFASYNCMAP _IOR(p, 134, long) #define SIOCSIFASYNCMAP _IOW(p, 135, long) #define SIOCGETU _IOR(p, 136, int) /* get unit number */ #define SIOCSIFVJCOMP _IOW(p, 137, char) /* enable/disable VJ Compression */ struct ppp_if_info { int pii_flags; #define PII_FLAGS_INUSE 0x1 /* in use by a stream */ #define PII_FLAGS_COMPAC 0x2 #define PII_FLAGS_COMPPROT 0x4 #define PII_FLAGS_ATTACHED 0x8 /* already if_attached */ #define PII_FLAGS_VJC_ON 0x10 /* VJ TCP header compression enabled */ struct ifnet pii_ifnet; queue_t *pii_writeq; /* used by ppp_output */ #ifdef VJC struct slcompress pii_sc_comp; /* vjc control buffer */ #endif #ifdef PPP_STATS struct slipstat pii_stats; #endif };
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.