/usr/include/freeradius/radutmp.h is in libfreeradius-dev 2.1.12+dfsg-1.2ubuntu8.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /*
* radutmp.h Definitions for the Radius UTMP file.
*
* Version: $Id$
*/
#ifndef _RADUTMP_H
#define _RADUTMP_H
#include <freeradius/ident.h>
RCSIDH(radutmp_h, "$Id$")
#ifdef __cplusplus
extern "C" {
#endif
/*
* Types of connection.
*/
#ifndef P_UNKNOWN
# define P_UNKNOWN 0
# define P_LOCAL 'L'
# define P_RLOGIN 'R'
# define P_SLIP 'S'
# define P_CSLIP 'C'
# define P_PPP 'P'
# define P_AUTOPPP 'A'
# define P_TELNET 'E'
# define P_TCPCLEAR 'T'
# define P_TCPLOGIN 'U'
# define P_CONSOLE '!'
# define P_SHELL 'X'
#endif
#define P_IDLE 0
#define P_LOGIN 1
struct radutmp {
char login[32]; /* Loginname */
/* FIXME: extend to 48 or 64 bytes */
unsigned int nas_port; /* Port on the terminal server (32 bits). */
char session_id[8]; /* Radius session ID (first 8 bytes at least)*/
/* FIXME: extend to 16 or 32 bytes */
unsigned int nas_address; /* IP of portmaster. */
unsigned int framed_address; /* SLIP/PPP address or login-host. */
int proto; /* Protocol. */
time_t time; /* Time entry was last updated. */
time_t delay; /* Delay time of request */
int type; /* Type of entry (login/logout) */
char porttype; /* Porttype (I=ISDN A=Async T=Async-ISDN */
char res1,res2,res3; /* Fills up to one int */
char caller_id[16]; /* Calling-Station-ID */
char reserved[12]; /* 3 ints reserved */
};
/*
* Take the size of the structure from the actual structure definition.
*/
#define RUT_NAMESIZE sizeof(((struct radutmp *) NULL)->login)
#define RUT_SESSSIZE sizeof(((struct radutmp *) NULL)->session_id)
#ifdef __cplusplus
}
#endif
#endif /* _RADUTMP_H */
|