(c *C.git_transfer_progress)
| 48 | } |
| 49 | |
| 50 | func newTransferProgressFromC(c *C.git_transfer_progress) TransferProgress { |
| 51 | return TransferProgress{ |
| 52 | TotalObjects: uint(c.total_objects), |
| 53 | IndexedObjects: uint(c.indexed_objects), |
| 54 | ReceivedObjects: uint(c.received_objects), |
| 55 | LocalObjects: uint(c.local_objects), |
| 56 | TotalDeltas: uint(c.total_deltas), |
| 57 | ReceivedBytes: uint(c.received_bytes)} |
| 58 | } |
| 59 | |
| 60 | type RemoteCompletion uint |
| 61 | type ConnectDirection uint |
no outgoing calls
no test coverage detected
searching dependent graphs…