typedef struct _SESSION_HEADER { /* sh */
UCHAR sess_name; /* name number being reported */
UCHAR num_sess; /* number of sess with this name */
UCHAR rcv_dg_outstanding; /* pending receive commands */
UCHAR rcv_any_outstanding; /* outstanding commands */
} SESSION_HEADER, *PSESSION_HEADER;
The SESSION_HEADER structure contains information about a network session. This structure is retrieved as part of the NCB structure. SESSION_HEADER is followed by as many SESSION_BUFFER structures as are required to describe the current network sessions.
sess_name
Specifies the name number of the session. This value corresponds to the ncb_num member of the NCB structure.
num_sess
Specifies the number of sessions that have the name specified by the sess_name member.
rcv_dg_outstanding
Specifies the number of outstanding NCBDGRECV and NCBDGRECVBC commands.
rcv_any_outstanding
Specifies the number of outstanding NCBRECVANY commands.
NCB SESSION_BUFFER