⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 segmenter.h

📁 libbt-1.04
💻 H
字号:
#ifndef __SEGMENTER__H#define __SEGMENTER__H#include <openssl/sha.h>#include "util.h"#include "bitset.h"typedef struct btFile {    _int64 start;    _int64 len;    char *path;} btFile;typedef struct btPartialPiece {    struct btPartialPiece *next;    int piecenumber;    kBitSet filled;    int nextbyteReq;		/* next request from here */    int isdone;			/* 0-filling, 1-retry */    char buffer[0];		/* blocksize - allocation trick when creating piece */} btPartialPiece;typedef struct btFileSet {    _int64 tsize;		/* total size */    _int64 ul;			/* bytes uploaded */    _int64 dl;			/* bytes downloaded */    _int64 left;		/* bytes left */    kBitSet completed;		/* completed blocks */    int nfiles;    int blocksize;    btFile** file;    int npieces;    char *hashes;		/* SHA data */    btPartialPiece *partial;} btFileSet;btFileSet* btFileSet_create( btFileSet *fs, int npieces, int blocksize, const char *hashbuf) ;void btFileSet_destroy( btFileSet *fs);int btFileSet_addfile( btFileSet *fs, const char *path, _int64 len) ;btFile *seg_findFile( btFileSet *fs, int piece);int seg_piecelen( btFileSet *fs, int piece);/* finds or allocates the given piece */btPartialPiece *seg_getPiece( btFileSet *fs, int piece);int seg_writebuf( btFileSet *fs, int piece, int offset, char *buf, int len) ;int seg_readbuf( btFileSet *fs, int piece, int start, char *buf, int len) ;int seg_review( btFileSet *fs, int piece);void seg_markFile( btFileSet *fs, char *filename, kBitSet *interest);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -