mirror of
https://github.com/transmission/transmission
synced 2025-01-04 05:56:02 +00:00
d7930984ef
There're places where manual intervention is still required as uncrustify is not ideal (unfortunately), but at least one may rely on it to do the right thing most of the time (e.g. when sending in a patch). The style itself is quite different from what we had before but making it uniform across all the codebase is the key. I also hope that it'll make the code more readable (YMMV) and less sensitive to further changes.
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
/*
|
|
* This file Copyright (C) 2013-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "transmission.h"
|
|
#include "peer-msgs.h"
|
|
#include "utils.h"
|
|
|
|
#include "libtransmission-test.h"
|
|
|
|
int main(void)
|
|
{
|
|
#if 0
|
|
|
|
uint32_t i;
|
|
uint8_t infohash[SHA_DIGEST_LENGTH];
|
|
struct tr_address addr;
|
|
tr_piece_index_t pieceCount = 1313;
|
|
size_t numwant;
|
|
size_t numgot;
|
|
tr_piece_index_t pieces[] = { 1059, 431, 808, 1217, 287, 376, 1188, 353, 508 };
|
|
tr_piece_index_t buf[16];
|
|
|
|
for (i = 0; i < SHA_DIGEST_LENGTH; ++i)
|
|
{
|
|
infohash[i] = 0xaa;
|
|
}
|
|
|
|
tr_address_from_string(&addr, "80.4.4.200");
|
|
|
|
numwant = 7;
|
|
numgot = tr_generateAllowedSet(buf, numwant, pieceCount, infohash, &addr);
|
|
check(numgot == numwant);
|
|
|
|
for (i = 0; i < numgot; ++i)
|
|
{
|
|
check(buf[i] == pieces[i]);
|
|
}
|
|
|
|
numwant = 9;
|
|
numgot = tr_generateAllowedSet(buf, numwant, pieceCount, infohash, &addr);
|
|
check(numgot == numwant);
|
|
|
|
for (i = 0; i < numgot; ++i)
|
|
{
|
|
check(buf[i] == pieces[i]);
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
}
|