mirror of
https://onedev.site.tesses.net/tesses-framework
synced 2026-02-08 15:55:46 +00:00
Add bencode, create torrent file, read torrent file and random number generator
This commit is contained in:
@@ -11,25 +11,5 @@ int main(int argc, char** argv)
|
||||
std::cout << Tesses::Framework::Http::BasicAuthServer::GetCreds(ctx,user,pass) << std::endl;
|
||||
std::cout << user << std::endl;
|
||||
std::cout << pass << std::endl;
|
||||
|
||||
std::cout << "Bitfield test" << std::endl;
|
||||
Tesses::Framework::BitTorrent::TorrentBitField bf(16);
|
||||
bf.set(7,false);
|
||||
bf.set(6,false);
|
||||
bf.set(5,true);
|
||||
bf.set(4,false);
|
||||
bf.set(3,true);
|
||||
bf.set(2,false);
|
||||
bf.set(1,true);
|
||||
bf.set(0,false);
|
||||
bf.set(15,false);
|
||||
bf.set(14,true);
|
||||
bf.set(13,false);
|
||||
bf.set(12,true);
|
||||
bf.set(11,false);
|
||||
bf.set(10,false);
|
||||
bf.set(9,false);
|
||||
bf.set(8,true);
|
||||
|
||||
std::cout << std::string(bf.data().begin(),bf.data().end()) << std::endl;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user