2008-03-09 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Rewritten the functions for binding port.
	* src/DHTConnectionImpl.{h, cc}
	* src/PeerListenCommand.{h, cc}
	* src/DHTSetup.cc
	* src/BtSetup.cc
	* test/DHTConnectionImplTest.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2008-03-09 14:09:17 +00:00
parent 032c7c2808
commit 7f40794931
8 changed files with 66 additions and 29 deletions

View file

@ -25,9 +25,12 @@ void DHTConnectionImplTest::testWriteAndReadData()
{
try {
DHTConnectionImpl con1;
/*uint16_t con1port =*/ con1.bind(0);
uint16_t con1port = 0;
CPPUNIT_ASSERT(con1.bind(con1port));
DHTConnectionImpl con2;
uint16_t con2port = con2.bind(0);
uint16_t con2port = 0;
CPPUNIT_ASSERT(con2.bind(con2port));
std::string message1 = "hello world.";
con1.sendMessage(reinterpret_cast<const unsigned char*>(message1.c_str()),
@ -43,9 +46,10 @@ void DHTConnectionImplTest::testWriteAndReadData()
std::string(&readbuffer[0], &readbuffer[rlength]));
}
} catch(Exception* e) {
std::string m = e->getMsg();
std::cerr << *e << std::endl;
delete e;
CPPUNIT_FAIL("exception thrown");
CPPUNIT_FAIL(m);
}
}