Skip to content

Commit

Permalink
Doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Pool committed Apr 11, 2002
1 parent 991f90f commit 6ded117
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions rsync.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,19 +369,19 @@ struct file_list {
};

struct sum_buf {
OFF_T offset; /* offset in file of this chunk */
int len; /* length of chunk of file */
int i; /* index of this chunk */
uint32 sum1; /* simple checksum */
char sum2[SUM_LENGTH]; /* checksum */
OFF_T offset; /**< offset in file of this chunk */
int len; /**< length of chunk of file */
int i; /**< index of this chunk */
uint32 sum1; /**< simple checksum */
char sum2[SUM_LENGTH]; /**< checksum */
};

struct sum_struct {
OFF_T flength; /* total file length */
size_t count; /* how many chunks */
size_t remainder; /* flength % block_length */
size_t n; /* block_length */
struct sum_buf *sums; /* points to info for each chunk */
OFF_T flength; /**< total file length */
size_t count; /**< how many chunks */
size_t remainder; /**< flength % block_length */
size_t n; /**< block_length */
struct sum_buf *sums; /**< points to info for each chunk */
};

struct map_struct {
Expand Down

0 comments on commit 6ded117

Please sign in to comment.