integrated changes from main repository for upcoming 1.2.5 release

This commit is contained in:
Guenter Obiltschnig
2006-10-12 15:08:28 +00:00
parent 41ee6e0ffa
commit 89111b52b3
26 changed files with 283 additions and 171 deletions

View File

@@ -1,7 +1,7 @@
//
// HTMLForm.cpp
//
// $Id: //poco/1.2/Net/src/HTMLForm.cpp#2 $
// $Id: //poco/1.2/Net/src/HTMLForm.cpp#3 $
//
// Library: Net
// Package: HTML
@@ -263,7 +263,7 @@ void HTMLForm::readUrl(std::istream& istr)
std::string decodedValue;
URI::decode(name, decodedName);
URI::decode(value, decodedValue);
set(decodedName, decodedValue);
add(decodedName, decodedValue);
if (ch == '&') ch = istr.get();
}
}
@@ -302,7 +302,7 @@ void HTMLForm::readMultipart(std::istream& istr, PartHandler& handler)
value += (char) ch;
ch = istr.get();
}
set(name, value);
add(name, value);
}
}
}

View File

@@ -1,7 +1,7 @@
//
// TCPServerParams.cpp
//
// $Id: //poco/1.2/Net/src/TCPServerParams.cpp#1 $
// $Id: //poco/1.2/Net/src/TCPServerParams.cpp#2 $
//
// Library: Net
// Package: TCPServer
@@ -76,6 +76,4 @@ void TCPServerParams::setMaxQueued(int count)
}
} } // namespace Poco::Net