xref: /openbsd/include/utmp.h (revision 746ad4a9)
1*746ad4a9Sguenther /*	$OpenBSD: utmp.h,v 1.6 2014/01/08 06:50:57 guenther Exp $	*/
2df930be7Sderaadt /*	$NetBSD: utmp.h,v 1.6 1994/10/26 00:56:40 cgd Exp $	*/
3df930be7Sderaadt 
4df930be7Sderaadt /*
5df930be7Sderaadt  * Copyright (c) 1988, 1993
6df930be7Sderaadt  *	The Regents of the University of California.  All rights reserved.
7df930be7Sderaadt  * (c) UNIX System Laboratories, Inc.
8df930be7Sderaadt  * All or some portions of this file are derived from material licensed
9df930be7Sderaadt  * to the University of California by American Telephone and Telegraph
10df930be7Sderaadt  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
11df930be7Sderaadt  * the permission of UNIX System Laboratories, Inc.
12df930be7Sderaadt  *
13df930be7Sderaadt  * Redistribution and use in source and binary forms, with or without
14df930be7Sderaadt  * modification, are permitted provided that the following conditions
15df930be7Sderaadt  * are met:
16df930be7Sderaadt  * 1. Redistributions of source code must retain the above copyright
17df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer.
18df930be7Sderaadt  * 2. Redistributions in binary form must reproduce the above copyright
19df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer in the
20df930be7Sderaadt  *    documentation and/or other materials provided with the distribution.
21e33d3bd3Smillert  * 3. Neither the name of the University nor the names of its contributors
22df930be7Sderaadt  *    may be used to endorse or promote products derived from this software
23df930be7Sderaadt  *    without specific prior written permission.
24df930be7Sderaadt  *
25df930be7Sderaadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26df930be7Sderaadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27df930be7Sderaadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28df930be7Sderaadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29df930be7Sderaadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30df930be7Sderaadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31df930be7Sderaadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32df930be7Sderaadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33df930be7Sderaadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34df930be7Sderaadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35df930be7Sderaadt  * SUCH DAMAGE.
36df930be7Sderaadt  *
37df930be7Sderaadt  *	@(#)utmp.h	8.2 (Berkeley) 1/21/94
38df930be7Sderaadt  */
39df930be7Sderaadt 
40df930be7Sderaadt #ifndef	_UTMP_H_
41df930be7Sderaadt #define	_UTMP_H_
42df930be7Sderaadt 
43df930be7Sderaadt #define	_PATH_UTMP	"/var/run/utmp"
44df930be7Sderaadt #define	_PATH_WTMP	"/var/log/wtmp"
45df930be7Sderaadt #define	_PATH_LASTLOG	"/var/log/lastlog"
46df930be7Sderaadt 
47c264c362Sderaadt #define	UT_NAMESIZE	32
48df930be7Sderaadt #define	UT_LINESIZE	8
49c264c362Sderaadt #define	UT_HOSTSIZE	256
50df930be7Sderaadt 
516d2ef3d7Smillert /*
526d2ef3d7Smillert  * Note that these are *not* C strings and thus are not
536d2ef3d7Smillert  * guaranteed to be NUL-terminated.
546d2ef3d7Smillert  */
556d2ef3d7Smillert 
56df930be7Sderaadt struct lastlog {
57df930be7Sderaadt 	time_t	ll_time;
58df930be7Sderaadt 	char	ll_line[UT_LINESIZE];
59df930be7Sderaadt 	char	ll_host[UT_HOSTSIZE];
60df930be7Sderaadt };
61df930be7Sderaadt 
62df930be7Sderaadt struct utmp {
63df930be7Sderaadt 	char	ut_line[UT_LINESIZE];
64df930be7Sderaadt 	char	ut_name[UT_NAMESIZE];
65df930be7Sderaadt 	char	ut_host[UT_HOSTSIZE];
66df930be7Sderaadt 	time_t	ut_time;
67df930be7Sderaadt };
68df930be7Sderaadt 
69df930be7Sderaadt #endif /* !_UTMP_H_ */
70