latest changes from main repository; added eclipse cdt project files

This commit is contained in:
Guenter Obiltschnig
2007-04-28 09:34:20 +00:00
parent d30a402069
commit adfaac6703
46 changed files with 17664 additions and 11399 deletions

View File

@@ -1,13 +1,13 @@
//
// TCPServerParams.cpp
//
// $Id: //poco/Main/Net/src/TCPServerParams.cpp#6 $
// $Id: //poco/Main/Net/src/TCPServerParams.cpp#7 $
//
// Library: Net
// Package: TCPServer
// Module: TCPServerParams
//
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
// Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
@@ -44,7 +44,8 @@ namespace Net {
TCPServerParams::TCPServerParams():
_threadIdleTime(10000000),
_maxThreads(0),
_maxQueued(64)
_maxQueued(64),
_threadPriority(Poco::Thread::PRIO_NORMAL)
{
}
@@ -76,4 +77,10 @@ void TCPServerParams::setMaxQueued(int count)
}
void TCPServerParams::setThreadPriority(Poco::Thread::Priority prio)
{
_threadPriority = prio;
}
} } // namespace Poco::Net