20 lines
608 B
C
20 lines
608 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "$Header: /proj/irix6.5.7m/isms/eoe/cmd/acct/RCS/ctmp.h,v 1.2 1993/11/05 04:24:06 jwag Exp $"
|
|
|
|
/*
|
|
* connect time record (various intermediate files)
|
|
*/
|
|
struct ctmp {
|
|
dev_t ct_tty; /* major minor */
|
|
uid_t ct_uid; /* userid */
|
|
char ct_name[8]; /* login name */
|
|
long ct_con[2]; /* connect time (p/np) secs */
|
|
time_t ct_start; /* session start time */
|
|
};
|