2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _UTMP_H
|
|
|
|
#define _UTMP_H
|
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <utmpx.h>
|
|
|
|
|
2012-01-31 19:39:17 +00:00
|
|
|
#define ACCOUNTING 9
|
2012-02-01 19:10:38 +00:00
|
|
|
#define UT_NAMESIZE 32
|
2012-01-31 19:39:17 +00:00
|
|
|
#define UT_HOSTSIZE 256
|
2014-01-09 00:36:29 +00:00
|
|
|
#define UT_LINESIZE 32
|
2012-01-31 19:39:17 +00:00
|
|
|
|
2012-05-06 20:35:32 +00:00
|
|
|
struct lastlog {
|
|
|
|
time_t ll_time;
|
|
|
|
char ll_line[UT_LINESIZE];
|
|
|
|
char ll_host[UT_HOSTSIZE];
|
|
|
|
};
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define ut_time ut_tv.tv_sec
|
|
|
|
#define ut_name ut_user
|
2013-06-28 00:00:29 +00:00
|
|
|
#define ut_addr ut_addr_v6[0]
|
2011-02-12 05:22:29 +00:00
|
|
|
#define utmp utmpx
|
2014-01-09 00:36:29 +00:00
|
|
|
#define e_exit __e_exit
|
|
|
|
#define e_termination __e_termination
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
void endutent(void);
|
|
|
|
struct utmp *getutent(void);
|
|
|
|
struct utmp *getutid(const struct utmp *);
|
|
|
|
struct utmp *getutline(const struct utmp *);
|
|
|
|
struct utmp *pututline(const struct utmp *);
|
|
|
|
void setutent(void);
|
|
|
|
|
2011-03-19 01:52:26 +00:00
|
|
|
void updwtmp(const char *, const struct utmp *);
|
2016-02-12 14:58:50 +00:00
|
|
|
int utmpname(const char *);
|
2011-03-19 01:52:26 +00:00
|
|
|
|
2014-12-21 01:13:27 +00:00
|
|
|
int login_tty(int);
|
|
|
|
|
2013-06-28 00:00:29 +00:00
|
|
|
#define _PATH_UTMP "/dev/null/utmp"
|
|
|
|
#define _PATH_WTMP "/dev/null/wtmp"
|
|
|
|
|
|
|
|
#define UTMP_FILE _PATH_UTMP
|
|
|
|
#define WTMP_FILE _PATH_WTMP
|
|
|
|
#define UTMP_FILENAME _PATH_UTMP
|
|
|
|
#define WTMP_FILENAME _PATH_WTMP
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|