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