Made util::fromHex and base32::decode function template

This commit is contained in:
Tatsuhiro Tsujikawa 2011-11-05 18:05:23 +09:00
parent 6ea1b68db1
commit 0c162dfbfb
19 changed files with 147 additions and 127 deletions

View file

@ -5,6 +5,7 @@
#include <cppunit/extensions/HelperMacros.h>
#include "TestUtil.h"
#include "Exception.h"
#include "util.h"
#include "LpdMessageDispatcher.h"
@ -37,7 +38,7 @@ void LpdMessageDispatcherTest::testCreateLpdRequest()
"Infohash: cd41c7fdddfd034a15a04d7ff881216e01c4ceaf\r\n"
"\r\n\r\n"),
bittorrent::createLpdRequest("239.192.152.143", 6771,
util::fromHex(infoHashString), 6000));
fromHex(infoHashString), 6000));
}
void LpdMessageDispatcherTest::testSendMessage()