2005-06-30 05:50:15 +02:00
|
|
|
#ifndef PKTLINE_H
|
|
|
|
#define PKTLINE_H
|
|
|
|
|
2006-06-26 10:27:07 +02:00
|
|
|
#include "git-compat-util.h"
|
2009-10-31 01:47:21 +01:00
|
|
|
#include "strbuf.h"
|
2006-06-26 10:27:07 +02:00
|
|
|
|
2005-06-30 05:50:15 +02:00
|
|
|
/*
|
|
|
|
* Silly packetized line writing interface
|
|
|
|
*/
|
|
|
|
void packet_flush(int fd);
|
2005-08-09 17:30:22 +02:00
|
|
|
void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
|
2009-10-31 01:47:21 +01:00
|
|
|
void packet_buf_flush(struct strbuf *buf);
|
|
|
|
void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
|
2005-06-30 05:50:15 +02:00
|
|
|
|
|
|
|
int packet_read_line(int fd, char *buffer, unsigned size);
|
2009-10-31 01:47:21 +01:00
|
|
|
int packet_get_line(struct strbuf *out, char **src_buf, size_t *src_len);
|
2006-06-21 09:30:21 +02:00
|
|
|
ssize_t safe_write(int, const void *, ssize_t);
|
2005-06-30 05:50:15 +02:00
|
|
|
|
|
|
|
#endif
|