Staging
v0.5.2
https://github.com/git/git
Revision 29f049a0c277be72637f74f1f90a89dccd3475bc authored by Junio C Hamano on 15 October 2006, 06:37:41 UTC, committed by Junio C Hamano on 15 October 2006, 06:38:01 UTC
This reverts commit 16854571aae6302f457c5fbee41ac64669b09595.
Git as recent as v1.1.6 do not understand version 3 delta.

v1.2.0 is Ok and I personally would say it is old enough, but
the improvement between version 2 and version 3 delta is not
bit enough to justify breaking older clients.

We should resurrect this later, but when we do so we shold
make it conditional.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 0a24657
Raw File
Tip revision: 29f049a0c277be72637f74f1f90a89dccd3475bc authored by Junio C Hamano on 15 October 2006, 06:37:41 UTC
Revert "move pack creation to version 3"
Tip revision: 29f049a
sideband.h
#ifndef SIDEBAND_H
#define SIDEBAND_H

#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, int err);
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top