home *** CD-ROM | disk | FTP | other *** search
- /* neterror.h - NETBIOS error codes
- * adapted from Nance B., Network Programming in C, Carmel, IN: Que, 1990
- * Division of Cancer Prevention & Control, NCI
- */
-
- /* Revision history:
- * 1.00 tam 12/13/90 first release
- */
-
- /* Program notes:
- * This array was removed from netbios.h for memory conservation
- */
-
- /* NetBIOS error return messages */
- char *net_error_message[] = {
- "success", /* 00 */
- "invalid buffer length", /* 01 */
- "ret code 02", /* 02 */
- "invalid command", /* 03 */
- "ret code 04", /* 04 */
- "timed out", /* 05 */
- "buffer too small", /* 06 */
- "ret code 07", /* 07 */
- "invalid session num", /* 08 */
- "no resource", /* 09 */
- "session closed", /* 0A */
- "command cancelled", /* 0B */
- "ret code 0C", /* 0C */
- "dupl. local name", /* 0D */
- "name table full", /* 0E */
- "active session", /* 0F */
- "ret code 10", /* 10 */
- "session table full", /* 11 */
- "no one listening", /* 12 */
- "invalid name num", /* 13 */
- "no answer", /* 14 */
- "no local name", /* 15 */
- "name in use", /* 16 */
- "name is deleted", /* 17 */
- "abnormal end", /* 18 */
- "name conflict", /* 19 */
- "ret code 1A", /* 1A */
- "ret code 1B", /* 1B */
- "ret code 1C", /* 1C */
- "ret code 1D", /* 1D */
- "ret code 1E", /* 1E */
- "ret code 1F", /* 1F */
- "ret code 20", /* 20 */
- "card busy", /* 21 */
- "too many cmds", /* 22 */
- "invalid card num", /* 23 */
- "cancel done", /* 24 */
- "ret code 25", /* 25 */
- "cannot cancel" /* 26 */
- };
-