struct ae_connrej {
unsigned short ae_cr_compname; /* offset */
unsigned short ae_cr_username; /* offset */
unsigned short ae_cr_netname; /* offset */
unsigned short ae_cr_reason;
};
where:
- ae_cr_compname is an offset (from the beginning
address of the ae_connrej data structure) to an ASCIIZ string indicating
the requester that established the session.
- ae_cr_username is an offset (from the beginning
address of the ae_connrej data structure) to an ASCIIZ string indicating
the name of the user who initiated the session. If 0, ae_cr_username
and ae_cr_compname are the same.
- ae_cr_netname is an offset (from the beginning
address of the ae_connrej data structure) to an ASCIIZ string indicating
the desired netname of a resource.
- ae_cr_reason is one of four values indicating
why the session was disconnected. These values are defined in the AUDIT.H
header file, as follows: ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ SYMBOLIC CONSTANT ³ VALUE ³ MEANING ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_USERLIMIT ³ 0 ³ Normal disconnection, or user name limit. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_BADPW ³ 1 ³ Error, session disconnect, or bad password. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_ADMINPRIVREQD ³ 2 ³ Autodisconnect (timeout), share removed, or
³
³ ³ ³ administrative permissions lacking. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ AE_NOACCESSPERM ³ 3 ³ No access permissions to shared resource.
³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
[Back]
[Next]