MCPcopy Create free account
hub / github.com/libgit2/git2go / push_transfer_progress_callback

Function push_transfer_progress_callback

wrapper.c:325–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323}
324
325static int push_transfer_progress_callback(
326 unsigned int current,
327 unsigned int total,
328 size_t bytes,
329 void *data)
330{
331 char *error_message = NULL;
332 const int ret = pushTransferProgressCallback(
333 &error_message,
334 current,
335 total,
336 bytes,
337 data
338 );
339 return set_callback_error(error_message, ret);
340}
341
342static int push_update_reference_callback(const char *refname, const char *status, void *data)
343{

Callers

nothing calls this directly

Calls 2

set_callback_errorFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…