Correzioni rimaste indietro ed espansione funzioni del resolver.
[gapil.git] / listati / utmp.h
1 struct utmp
2 {
3     short int ut_type;            /* Type of login.  */
4     pid_t ut_pid;                 /* Process ID of login process.  */
5     char ut_line[UT_LINESIZE];    /* Devicename.  */
6     char ut_id[4];                /* Inittab ID.  */
7     char ut_user[UT_NAMESIZE];    /* Username.  */
8     char ut_host[UT_HOSTSIZE];    /* Hostname for remote login.  */
9     struct exit_status ut_exit;   /* Exit status of a process marked
10                                      as DEAD_PROCESS.  */
11     long int ut_session;          /* Session ID, used for windowing.  */
12     struct timeval ut_tv;         /* Time entry was made.  */
13     int32_t ut_addr_v6[4];        /* Internet address of remote host.  */
14     char __unused[20];            /* Reserved for future use.  */
15 };