| 23 | namespace toft { |
| 24 | |
| 25 | static void SetErrorCode(int* error_code, int value) |
| 26 | { |
| 27 | if (error_code) |
| 28 | *error_code = value; |
| 29 | } |
| 30 | |
| 31 | ///////////////////////////////////////////////////////////////////////////// |
| 32 | // HostEntry class implementation |