struct ae_connstart {
unsigned short ae_ct_compname; /* offset */
unsigned short ae_ct_username; /* offset */
unsigned short ae_ct_netname; /* offset */
unsigned short ae_ct_connid;
};
where:
- ae_ct_compname is an offset (from the beginning
address of the ae_connstart data structure) to an ASCIIZ string indicating
the requester that established the session.
- ae_ct_username is an offset (from the beginning
address of the ae_connstart data structure) to an ASCIIZ string indicating
the name of the user who initiated the session. If 0, ae_ct_username
and ae_ct_compname are the same.
- ae_ct_netname is an offset (from the beginning
address of the ae_connstart data structure) to an ASCIIZ string indicating
the netname of the resource with which the connection was made.
- ae_ct_connid is the connection identification
number.
[Back]
[Next]