Changeset 7559 for trunk/libtransmission/inout.h
- Timestamp:
- Dec 31, 2008, 6:08:13 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/inout.h
r7151 r7559 53 53 54 54 /** 55 * returns nonzero if the piece matches its metainfo's SHA1 checksum. 55 * @brief Test to see if the piece matches its metainfo's SHA1 checksum. 56 * 57 * @param optionalBuffer if calling tr_ioTestPiece() repeatedly, you can 58 * get best performance by providing a buffer with 59 * tor->info.pieceSize bytes. 56 60 */ 57 int tr_ioTestPiece( const tr_torrent*, 58 int piece ); 61 tr_bool tr_ioTestPiece( const tr_torrent * tor, 62 tr_piece_index_t piece, 63 void * optionalBuffer, 64 size_t optionalBufferLen ); 59 65 60 66
Note: See TracChangeset
for help on using the changeset viewer.