d46b49ebc8af86cf525bb8cbeaff0d04be38ed5c
[yaz-moved-to-github.git] / comstack / comstack.c
1 /*
2  * Copyright (c) 1995-1997, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: comstack.c,v $
7  * Revision 1.4  1997-09-29 07:16:14  adam
8  * Array cs_errlist no longer global.
9  *
10  * Revision 1.3  1997/09/01 08:49:14  adam
11  * New windows NT/95 port using MSV5.0. Minor changes only.
12  *
13  * Revision 1.2  1995/09/29 17:01:48  quinn
14  * More Windows work
15  *
16  * Revision 1.1  1995/06/14  09:58:20  quinn
17  * Renamed yazlib to comstack.
18  *
19  * Revision 1.2  1995/05/16  08:51:15  quinn
20  * License, documentation, and memory fixes
21  *
22  * Revision 1.1  1995/03/14  10:28:34  quinn
23  * Adding server-side support to tcpip.c and fixing bugs in nonblocking I/O
24  *
25  *
26  */
27
28 #include <comstack.h>
29
30 static const char *cs_errlist[] =
31 {
32     "No error or unspecified error",
33     "System (lower-layer) error",
34     "Operation out of state",
35     "No data (operation would block)",
36     "New data while half of old buffer is on the line (flow control)"
37 };
38
39 const char *cs_errmsg(int n)
40 {
41     return cs_errlist[n];
42 }