1Fri May 25, 2001 2 3The version 6 beta version mostly compiles fine on Tru64/Alpha 4machines with the following exceptions: 5 61) You need to modify tcptrace.h to find the unusual definitions that 7 Tru64 uses for the bit-field level TCP and IP fields 8 9#define IP_HL(pip) ((pip)->ip_vhl&0xf) 10#define IP_V(pip) ((pip)->ip_vhl>>4) 11#define TH_X2(ptcp) ((ptcp)->th_xoff&0xf) 12#define TH_OFF(ptcp) ((ptcp)->th_xoff>>4) 13 142) the NS module can't handle those, so you'll need to remove 15 "-DGROK_NS" from the Makefile (which will remove NS input file support) 16 17