home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilss / sockets / include / h / utmp < prev    next >
Encoding:
Text File  |  1995-01-11  |  848 b   |  36 lines

  1. /*
  2.  * $Header: /ax/networking:include/utmp.h:networking  1.1  $
  3.  * $Source: /ax/networking:include/utmp.h: $
  4.  *
  5.  * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
  6.  *
  7.  * $Log:    utmp.h,v $
  8.  * Revision 1.1  95/01/11  10:21:42  kwelton
  9.  * Initial revision
  10.  * 
  11.  * Revision 1.3  88/06/19  15:23:24  beta
  12.  * Acorn Unix initial beta version
  13.  * 
  14.  */
  15. /*
  16.  * Copyright (c) 1980 Regents of the University of California.
  17.  * All rights reserved.  The Berkeley software License Agreement
  18.  * specifies the terms and conditions for redistribution.
  19.  *
  20.  *    @(#)utmp.h    5.1 (Berkeley) 5/30/85
  21.  */
  22.  
  23. /*
  24.  * Structure of utmp and wtmp files.
  25.  *
  26.  * Assuming the number 8 is unwise.
  27.  */
  28. struct utmp {
  29.     char    ut_line[8];        /* tty name */
  30.     char    ut_name[8];        /* user id */
  31.     char    ut_host[16];        /* host name, if remote */
  32.     long    ut_time;        /* time on */
  33. };
  34.  
  35. /* EOF utmp.h */
  36.