/*                  cash.h                    */
/* k 0051	12/09/90	*/
/* k 0115	02/02/91	*/
struct cash {
	/* Deletion of prefix */				/* @0051 */
     char lu[8]      ;       /* LU name                    */
     char node[8]    ;       /* NODE name                  */
								/* @0051 */
     char mac[4]     ;       /* MAC address                */
     unsigned char adra;     /* area address               */	/* @0115 */
     unsigned char adrn;     /* node address               */	/* @0115 */
     unsigned char type;     /* LU type                    */	/* @0115 */
     unsigned char stat;     /* LU status                  */	/* @0115 */
     unsigned char vrn;      /* VRN                        */	/* @0115 */
     unsigned char tp ;      /* TP                         */	/* @0115 */
     unsigned char rsv1;     /* reserved                   */	/* @0115 */
     unsigned char rsv2;					/* @0115 */
     struct sess *sess;      /* sess-block pointer         */
     };
