]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/netunit.cpp
Removed unused constant from netunit.cpp.
[stg.git] / stglibs / srvconf.lib / netunit.cpp
index baf02004930b76984495a16b55142466889ec172..182d338c8bfc7168e0477330cf2bf4c45cab4bb6 100644 (file)
@@ -45,8 +45,6 @@ using namespace STG;
 namespace
 {
 
-const std::string::size_type MAX_XML_CHUNK_LENGTH = 2048;
-
 struct ReadState
 {
     bool final;
@@ -343,7 +341,7 @@ int NETTRANSACT::TxData(const std::string & text)
 {
 STG::ENCRYPT_STREAM stream(password, TxCrypto, this);
 stream.Put(text.c_str(), text.length() + 1, true);
-if (!stream.isOk())
+if (!stream.IsOk())
     {
     errorMsg = SEND_DATA_ERROR;
     return st_send_fail;
@@ -367,7 +365,7 @@ while (!state.final)
         return st_recv_fail;
         }
     stream.Put(buffer, res, res == 0);
-    if (!stream.isOk())
+    if (!stream.IsOk())
         return st_xml_parse_error;
     }