-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfiles.h
31 lines (23 loc) · 1.04 KB
/
files.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef HASHRAT_FILES_H
#define HASHRAT_FILES_H
#include "common.h"
#define FT_FILE 0
#define FT_DIR 1
#define FT_LNK 2
#define FT_BLK 4
#define FT_CHR 8
#define FT_SOCK 16
#define FT_FIFO 32
#define FT_STDIN 64
#define FT_HTTP 256
#define FT_SSH 512
int StatFile(HashratCtx *Ctx, const char *Path, struct stat *Stat);
void GlobFiles(HashratCtx *Ctx, const char *Path, int FType, ListNode *Dirs);
int HashSingleFile(char **RetStr, HashratCtx *Ctx, int Type,char *Path);
void ProcessData(char **RetStr, HashratCtx *Ctx, const char *Data, int DataLen);
int HashItem(HashratCtx *Ctx, const char *HashType, const char *Path, struct stat *FStat, char **HashStr);
int ProcessItem(HashratCtx *Ctx, const char *Path, struct stat *Stat, int IsTopLevel);
void HashratFinishHash(char **RetStr, HashratCtx *Ctx, HASH *Hash);
int HashratHashFile(HashratCtx *Ctx, HASH *Hash, int Type, const char *Path, struct stat *FStat);
int HashratHashSingleFile(HashratCtx *Ctx, const char *HashType, int FileType, const char *Path, struct stat *FStat, char **RetStr);
#endif