SF [2512027] FTPClientSession reconnect capability

removed unused variable in Socket::poll()
This commit is contained in:
Aleksandar Fabijanic
2009-02-26 02:37:29 +00:00
parent b99f4b6d1f
commit 9bef44cab6
5 changed files with 290 additions and 70 deletions

View File

@@ -40,13 +40,24 @@
#include "CppUnit/TestCase.h"
namespace Poco {
namespace Net {
class FTPClientSession;
} }
class DialogServer;
class FTPClientSessionTest: public CppUnit::TestCase
{
public:
FTPClientSessionTest(const std::string& name);
~FTPClientSessionTest();
void testLogin();
void testLogin1();
void testLogin2();
void testLogin3();
void testLoginFailed1();
void testLoginFailed2();
void testCommands();
@@ -63,6 +74,7 @@ public:
static CppUnit::Test* suite();
private:
void login(DialogServer& server, Poco::Net::FTPClientSession& session);
};