]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/netunit.cpp
Better error reporting in netunit.cpp.
[stg.git] / stglibs / srvconf.lib / netunit.cpp
index 6436e4f95e327a909864ca6ec3e32a1147690247..42b301a5a515c249429901446032775352518fae 100644 (file)
@@ -45,8 +45,6 @@ using namespace STG;
 namespace
 {
 
-const std::string::size_type MAX_XML_CHUNK_LENGTH = 2048;
-
 struct ReadState
 {
     bool final;
@@ -124,7 +122,7 @@ if (!localAddress.empty())
         struct hostent * phe = gethostbyname(localAddress.c_str());
         if (phe == NULL)
             {
-            errorMsg = "DNS error.\nCan not reslove " + localAddress;
+            errorMsg = "Can not reslove '" + localAddress + "'";
             return st_dns_err;
             }
 
@@ -156,7 +154,7 @@ if (ip == INADDR_NONE)
     struct hostent * phe = gethostbyname(server.c_str());
     if (phe == NULL)
         {
-        errorMsg = "DNS error.\nCan not reslove " + server;
+        errorMsg = "Can not reslove '" + server + "'";
         return st_dns_err;
         }