f7aa6f913a
Yeah Signed-off-by: kaguya <vpshinomiya@protonmail.com>
72 lines
1.4 KiB
C
72 lines
1.4 KiB
C
#ifndef _BITS_LINUX_UTMP_H
|
|
#define _BITS_LINUX_UTMP_H
|
|
|
|
#include <abi-bits/pid_t.h>
|
|
#include <abi-bits/utmp-defines.h>
|
|
#include <bits/posix/timeval.h>
|
|
#include <bits/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define UT_LINESIZE 32
|
|
#define UT_NAMESIZE 32
|
|
#define UT_HOSTSIZE 256
|
|
|
|
#define UTMP_FILENAME UTMP_FILE
|
|
#define WTMP_FILENAME WTMP_FILE
|
|
|
|
struct exit_status {
|
|
short int e_termination;
|
|
short int e_exit;
|
|
};
|
|
|
|
struct utmp {
|
|
short ut_type;
|
|
pid_t ut_pid;
|
|
char ut_line[UT_LINESIZE];
|
|
char ut_id[4];
|
|
char ut_user[UT_NAMESIZE];
|
|
char ut_host[UT_HOSTSIZE];
|
|
struct exit_status ut_exit;
|
|
long ut_session;
|
|
struct timeval ut_tv;
|
|
__mlibc_int32 ut_addr_v6[4];
|
|
char __unused[20];
|
|
};
|
|
|
|
struct lastlog {
|
|
time_t ll_time;
|
|
char ll_line[UT_LINESIZE];
|
|
char ll_host[UT_HOSTSIZE];
|
|
};
|
|
|
|
/* Hacks for compability reasons */
|
|
#define ut_name ut_user
|
|
#ifndef _NO_UT_TIME
|
|
#define ut_time ut_tv.tv_sec
|
|
#endif
|
|
#define ut_xtime ut_tv.tv_sec
|
|
#define ut_addr ut_addr_v6[0]
|
|
|
|
#ifndef __MLIBC_ABI_ONLY
|
|
|
|
void setutent(void);
|
|
struct utmp *getutent(void);
|
|
int getutent_r(struct utmp *__buf, struct utmp **__res);
|
|
void endutent(void);
|
|
struct utmp *pututline(const struct utmp *__line);
|
|
struct utmp *getutline(const struct utmp *__line);
|
|
struct utmp *getutid(const struct utmp *__id);
|
|
int utmpname(const char *__file);
|
|
void updwtmp(const char *wtmp_file, const struct utmp *ut);
|
|
|
|
#endif /* !__MLIBC_ABI_ONLY */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _BITS_LINUX_UTMP_H */
|