summaryrefslogtreecommitdiff
path: root/pkt-line.h
diff options
context:
space:
mode:
authorBen Peart <peartben@gmail.com>2017-05-05 15:27:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-05-08 01:57:26 (GMT)
commitc0c70f7ac080c3b4ecc50a3207eb66e97c10271d (patch)
tree06cbefbbda060e2e20bfc92b9d22bac6b436b441 /pkt-line.h
parent825b9226bf7a962bc76571319b1444bc02fdcdf8 (diff)
downloadgit-c0c70f7ac080c3b4ecc50a3207eb66e97c10271d.zip
git-c0c70f7ac080c3b4ecc50a3207eb66e97c10271d.tar.gz
git-c0c70f7ac080c3b4ecc50a3207eb66e97c10271d.tar.bz2
convert: move packet_write_line() into pkt-line as packet_writel()
Add packet_writel() which writes multiple lines in a single call and then calls packet_flush_gently(). Update convert.c to use the new packet_writel() function from pkt-line. Signed-off-by: Ben Peart <benpeart@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pkt-line.h')
-rw-r--r--pkt-line.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkt-line.h b/pkt-line.h
index 66ef610..b296586 100644
--- a/pkt-line.h
+++ b/pkt-line.h
@@ -25,6 +25,7 @@ void packet_buf_flush(struct strbuf *buf);
void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
int packet_flush_gently(int fd);
int packet_write_fmt_gently(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
+int packet_writel(int fd, const char *line, ...);
int write_packetized_from_fd(int fd_in, int fd_out);
int write_packetized_from_buf(const char *src_in, size_t len, int fd_out);