MCPcopy Create free account
hub / github.com/git/git / packet_writer_write

Function packet_writer_write

pkt-line.c:683–691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

681}
682
683void packet_writer_write(struct packet_writer *writer, const char *fmt, ...)
684{
685 va_list args;
686
687 va_start(args, fmt);
688 packet_write_fmt_1(writer->dest_fd, 0,
689 writer->use_sideband ? "\001" : "", fmt, args);
690 va_end(args);
691}
692
693void packet_writer_error(struct packet_writer *writer, const char *fmt, ...)
694{

Callers 7

send_shallowFunction · 0.85
send_unshallowFunction · 0.85
send_acksFunction · 0.85
send_wanted_ref_infoFunction · 0.85
send_shallow_infoFunction · 0.85
upload_pack_v2Function · 0.85
send_infoFunction · 0.85

Calls 1

packet_write_fmt_1Function · 0.85

Tested by

no test coverage detected