131592Sminshall /* 2*33812Sbostic * Copyright (c) 1988 Regents of the University of California. 3*33812Sbostic * All rights reserved. 4*33812Sbostic * 5*33812Sbostic * Redistribution and use in source and binary forms are permitted 6*33812Sbostic * provided that this notice is preserved and that due credit is given 7*33812Sbostic * to the University of California at Berkeley. The name of the University 8*33812Sbostic * may not be used to endorse or promote products derived from this 9*33812Sbostic * software without specific prior written permission. This software 10*33812Sbostic * is provided ``as is'' without express or implied warranty. 11*33812Sbostic * 12*33812Sbostic * @(#)tncomp.h 3.2 (Berkeley) 03/28/88 13*33812Sbostic */ 14*33812Sbostic 15*33812Sbostic /* 1631592Sminshall * Where the fields fall on the formatted screen used by tncomp, tnrecv, 1731592Sminshall * and tnsend. 1831592Sminshall */ 1931592Sminshall 2031592Sminshall #define SEND_SEQUENCE 1 2131592Sminshall #define SEND_SEQUENCE_LENGTH 23 2231592Sminshall 2331592Sminshall #define ACK_SEQUENCE (SEND_SEQUENCE+SEND_SEQUENCE_LENGTH+1) 2431592Sminshall #define ACK_SEQUENCE_LENGTH 22 2531592Sminshall 2631592Sminshall #define CHECKSUM (ACK_SEQUENCE+ACK_SEQUENCE_LENGTH+1) 2731592Sminshall #define CHECKSUM_LENGTH 32 2831592Sminshall 2931592Sminshall #define DATA (CHECKSUM+CHECKSUM_LENGTH+1) 3031592Sminshall #define DATA_LENGTH ((80*22)+79) 31