nds2-client - ClientUser  0.16.8
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
nds_errno.hh
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