Staging
v0.5.2
https://github.com/git/git
Revision 141d21b8256ef96bbd693fd35e154787365e26dc authored by Junio C Hamano on 12 January 2007, 00:48:28 UTC, committed by Junio C Hamano on 12 January 2007, 00:48:28 UTC
* ar/merge-recursive:
  merge-recursive: do not use on-file index when not needed.
  Speed-up recursive by flushing index only once for all entries
2 parent s c388761 + 8b944b5
Raw File
Tip revision: 141d21b8256ef96bbd693fd35e154787365e26dc authored by Junio C Hamano on 12 January 2007, 00:48:28 UTC
Merge branch 'ar/merge-recursive'
Tip revision: 141d21b
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