Chatsync  bbffde5c0c672a526bdc83637acf66dc20a80fbf
messages.hpp
Go to the documentation of this file.
1 #include <string>
2 
3 const static std::string ERR_HUB_CHANNEL_ALREADY_IN = "Channel can't be both input and output";
4 const static std::string ERR_NOT_IMPL = "Not implemented yet";
5 
6 const static std::string MSG_EXITING = "Bot exiting";
7 
8 const static std::string ERR_SOCK_CREATE = "Can't create socket";
9 
10 const static std::string ERR_HOST_NOT_FOUND = "Host not found";
11 
12 const static std::string ERR_CONNECTION = "Connection error";
13 
14 const static std::string ERR_SOCK_WRITE = "Error during writing to socket";
15 
16 const static std::string ERR_SOCK_READ = "Error during reading to socket";
17 
18 const static std::string ERR_FD = "Wrong file descriptor provided to poll function";
19 
20 const static std::string ERR_FILE_OPEN = "Can't open file";
21 
22 const static std::string ERR_CONFIG_SCHEME = "Access scheme is not supported";
23 
24 const static std::string ERR_NO_OPTION = "Option is not configured";
25 
26 const static std::string ERR_WRONG_DIR = "Wrong channel direction option";
27 
28 const static std::string ERR_TOX_INIT = "Can't initialize TOX engine";
29 
30 const static std::string ERR_MALFORMED_VAL = "Malformed value";
static const std::string ERR_SOCK_READ
Definition: messages.hpp:16
static const std::string ERR_NOT_IMPL
Definition: messages.hpp:4
static const std::string ERR_SOCK_CREATE
Definition: messages.hpp:8
static const std::string ERR_FD
Definition: messages.hpp:18
static const std::string ERR_SOCK_WRITE
Definition: messages.hpp:14
static const std::string ERR_FILE_OPEN
Definition: messages.hpp:20
static const std::string ERR_CONFIG_SCHEME
Definition: messages.hpp:22
static const std::string ERR_NO_OPTION
Definition: messages.hpp:24
static const std::string ERR_CONNECTION
Definition: messages.hpp:12
static const std::string ERR_WRONG_DIR
Definition: messages.hpp:26
static const std::string ERR_HUB_CHANNEL_ALREADY_IN
Definition: messages.hpp:3
static const std::string ERR_TOX_INIT
Definition: messages.hpp:28
static const std::string ERR_HOST_NOT_FOUND
Definition: messages.hpp:10
static const std::string MSG_EXITING
Definition: messages.hpp:6
static const std::string ERR_MALFORMED_VAL
Definition: messages.hpp:30