Having the packet sizes defined near the packet read/write functions makes more sense. Signed-off-by: Jeff King <peff@xxxxxxxx> --- http.c | 1 + pkt-line.h | 3 +++ sideband.h | 3 --- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/http.c b/http.c index d9d1aad..8803c70 100644 --- a/http.c +++ b/http.c @@ -5,6 +5,7 @@ #include "url.h" #include "credential.h" #include "version.h" +#include "pkt-line.h" int active_requests; int http_is_verbose; diff --git a/pkt-line.h b/pkt-line.h index 5d2fb42..6927ea5 100644 --- a/pkt-line.h +++ b/pkt-line.h @@ -58,6 +58,9 @@ int packet_read_line(int fd, char *buffer, unsigned size); */ int packet_read_line(int fd, char *buffer, unsigned size); +#define DEFAULT_PACKET_MAX 1000 +#define LARGE_PACKET_MAX 65520 + int packet_get_line(struct strbuf *out, char **src_buf, size_t *src_len); #endif diff --git a/sideband.h b/sideband.h index d72db35..e46bed0 100644 --- a/sideband.h +++ b/sideband.h @@ -4,9 +4,6 @@ #define SIDEBAND_PROTOCOL_ERROR -2 #define SIDEBAND_REMOTE_ERROR -1 -#define DEFAULT_PACKET_MAX 1000 -#define LARGE_PACKET_MAX 65520 - int recv_sideband(const char *me, int in_stream, int out); ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max); -- 1.8.2.rc0.9.g352092c -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html