summaryrefslogtreecommitdiff
path: root/pkt-line.h
diff options
context:
space:
mode:
authorLars Schneider <larsxschneider@gmail.com>2016-10-16 23:20:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-10-17 18:36:50 (GMT)
commit038ce90f2ff91587f2d61993f5c4c23d6fdca144 (patch)
tree649900624f101604aa7b3aa50fab62ee3112ca7a /pkt-line.h
parent70428d1a5209f8c9996e9a4e0cc2f7aa0f83f3e8 (diff)
downloadgit-038ce90f2ff91587f2d61993f5c4c23d6fdca144.zip
git-038ce90f2ff91587f2d61993f5c4c23d6fdca144.tar.gz
git-038ce90f2ff91587f2d61993f5c4c23d6fdca144.tar.bz2
pkt-line: add packet_flush_gently()
packet_flush() would die in case of a write error even though for some callers an error would be acceptable. Add packet_flush_gently() which writes a pkt-line flush packet like packet_flush() but does not die in case of an error. The function is used in a subsequent patch. Signed-off-by: Lars Schneider <larsxschneider@gmail.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 3caea77..3fa0899 100644
--- a/pkt-line.h
+++ b/pkt-line.h
@@ -23,6 +23,7 @@ void packet_flush(int fd);
void packet_write_fmt(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
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)));
/*