main pico / pkg / rsync-receiver / rsyncstats / rsyncstats.go
Eric Bower  ·  2026-05-31
1package rsyncstats
2
3type TransferStats struct {
4	Read    int64 // total bytes read (from network connection)
5	Written int64 // total bytes written (to network connection)
6	Size    int64 // total size of files
7}