Audit Connection Reject
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: Audit Connection Stop]
[Next: Audit Resource Access Level 1]