nds2-client - ClientDeveloper  0.16.8
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
nds_errno.hh
Go to the documentation of this file.
1 #ifndef NDS_ERRNO_HH
2 #define NDS_ERRNO_HH
3 
4 namespace NDS
5 {
6 
7  enum errnum
8  {
9  EOS = 256, /* end of stream */
10  CHANNEL_NAME_TOO_LONG, /* channel name is too long */
11  UNEXPECTED_CHANNELS_RECEIVED, /* server sent more channels than expected
12  */
13  MINUTE_TRENDS, /* some minute trends were requested, but start and stop
14  times were not divisible by 60 */
15  TRANSFER_BUSY, /* another transfer is already in progress */
16  NO_SUCH_CHANNEL, /* no such channel */
17  ALREADY_CLOSED, /* connection already closed */
18  ERROR_LAST /* last error code */
19  };
20 }
21 
22 #endif // NDS_ERRNO_HH
errnum
Definition: nds_errno.hh:7
Definition: nds_errno.hh:11
Definition: nds_errno.hh:10
Definition: nds_errno.hh:16
Definition: nds_errno.hh:9
Definition: nds_errno.hh:18
Definition: nds_errno.hh:15
Definition: nds_errno.hh:17
Definition: nds_errno.hh:13