Revision 713ee7fe46dce859e46dbb255498ff79cdfb7fba authored by Junio C Hamano on 20 October 2014, 19:23:42 UTC, committed by Junio C Hamano on 20 October 2014, 19:23:43 UTC
* ta/config-set:
  t1308: fix broken here document in test script
2 parent s f9a2fd3 + dc05179
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);
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top