mirror of
https://github.com/schollz/croc.git
synced 2024-11-24 16:23:47 +03:00
Merge pull request #49 from El-JojA/master
Added file/folder transfer time
This commit is contained in:
commit
ab434a8955
@ -212,6 +212,7 @@ func (c *Connection) runClient() error {
|
|||||||
"sender?": c.IsSender,
|
"sender?": c.IsSender,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
startTime:= time.Now()
|
||||||
c.HashedCode = Hash(c.Code)
|
c.HashedCode = Hash(c.Code)
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
@ -465,8 +466,9 @@ func (c *Connection) runClient() error {
|
|||||||
} else {
|
} else {
|
||||||
fmt.Printf("\nReceived file written to %s\n", path.Join(c.Path, c.File.Name))
|
fmt.Printf("\nReceived file written to %s\n", path.Join(c.Path, c.File.Name))
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
timeSinceStart:= time.Since(startTime) / time.Second
|
||||||
|
fmt.Printf("\nTransfered at an average speed of %s/s", humanize.Bytes(uint64(float64(c.File.Size)/float64(timeSinceStart))))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user