https://github.com/git/git
Revision f5961572a02ef08324f297fe93b704ff2137e5a6 authored by Junio C Hamano on 02 October 2006, 07:47:32 UTC, committed by Junio C Hamano on 02 October 2006, 07:47:32 UTC
* maint:
  git-push: .git/remotes/ file does not require SP after colon
  git-mv: invalidate the removed path properly in cache-tree
2 parent s 7c2738c + 6fe5b7f
Raw File
Tip revision: f5961572a02ef08324f297fe93b704ff2137e5a6 authored by Junio C Hamano on 02 October 2006, 07:47:32 UTC
Merge branch 'maint'
Tip revision: f596157
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, char *, int);
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top