Revision 7cb1ea13d47acefccd3fdad044f3bf8921634d3e authored by Junio C Hamano on 21 November 2018, 14:23:48 UTC, committed by Junio C Hamano on 21 November 2018, 14:23:48 UTC
2 parent s 9fc9555 + 98cdfbb
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