Revision 653078bbddef3ecd454c3e36b9e43629128967db authored by Junio C Hamano on 10 February 2017, 20:52:27 UTC, committed by Junio C Hamano on 10 February 2017, 20:52:27 UTC
Doc update.

* nd/rev-list-all-includes-HEAD-doc:
  rev-list-options.txt: update --all about HEAD
2 parent s c1462b8 + 209df26
Raw File
sideband.h
#ifndef SIDEBAND_H
#define SIDEBAND_H

#define SIDEBAND_PROTOCOL_ERROR -2
#define SIDEBAND_REMOTE_ERROR -1

int recv_sideband(const char *me, int in_stream, int out);
void send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top