struct ae_connstop {
unsigned short ae_cp_compname; /* offset */
unsigned short ae_cp_username; /* offset */
unsigned short ae_cp_netname; /* offset */
unsigned short ae_cp_connid;
unsigned short ae_cp_reason;
};
where:
- ae_cp_compname is an offset (from the beginning
address of the ae_connstop data structure) to an ASCIIZ string indicating
the requester that established the session.
- ae_cp_username is an offset (from the beginning
address of the ae_connstop data structure) to an ASCIIZ string indicating
the name of the user who initiated the session. If 0, ae_cp_username
and ae_cp_compname are the same.
- ae_cp_netname is an offset (from the beginning
address of the ae_connstop data structure) to an ASCIIZ string indicating
the connected netname of the resource.
- ae_cp_connid is the connection identification
number.
- ae_cp_reason is one of three values indicating
why the session was disconnected. These values, defined in the AUDIT.H header
file, mean the following: ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ SYMBOLIC CONSTANT ³ VALUE ³ MEANING ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_NORMAL ³ 0 ³ Normal disconnection, or user name limit. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_SESSDIS ³ 1 ³ Error, session disconnect, or bad password. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_UNSHARE ³ 2 ³ Autodisconnect (timeout), share removed, or ³
³ ³ ³ administrative permissions lacking. ³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
[Back]
[Next]