mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 00:07:59 +02:00
integrated changes from main repository for upcoming 1.2.5 release
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user