Revision 9c70e2c105f9c4b4708af6ae25d2678929b3d61d authored by Junio C Hamano on 12 November 2014, 20:13:25 UTC, committed by Junio C Hamano on 12 November 2014, 20:13:25 UTC
2 parent s bbebdc1 + 7fa1365
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