struct ae_sesslogoff {
  unsigned short ae_sf_compname; /* offset */
  unsigned short ae_sf_username; /* offset */
  unsigned short ae_sf_reason;
};
where:
- ae_sf_compname is an offset (from the beginning
address of the ae_sesslogoff data structure) to an ASCIIZ string
indicating the requester that established the session.
 
- ae_sf_username is an offset (from the beginning
address of the ae_sesslogoff data structure) to an ASCIIZ string
indicating the name of the user who initiated the session. If 0, ae_sf_username
and ae_sf_compname are the same.
 
- ae_sf_reason is one of five 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_ERROR      ³ 1   ³ Error, session disconnect, or bad password.   ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³ AE_AUTODIS     ³ 2   ³ Autodisconnect (timeout), share removed, or   ³
 ³           ³    ³ administrative permissions required.       ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³ AE_ADMINDIS     ³ 3   ³ Administrative disconnection (forced).      ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³ AE_ACCRESTRICT   ³ 4   ³ Forced off by account system because of account
³
 ³           ³    ³ restriction, such as logon hours.        ³
 ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
 
[Back] 
[Next]