1 #ifndef INC_NET_H
2 #define INC_NET_H
3 
4 #include <string>
5 
6 enum hssResponseCode
7 {
8     HSS_FAIL, // couldn't talk to server
9     HSS_ERROR, // server replied with an error
10     HSS_SUCCESS // server replied with success
11 };
12 
13 hssResponseCode doHSSCommand(std::string command, std::string& response);
14 
15 #endif /* INC_NET_H */
16