Move sideband server side support into reusable form.
[git.git] / sideband.h
blobc645cf2c521f3153d353ab0466607adeaa1d4498
1 #ifndef SIDEBAND_H
2 #define SIDEBAND_H
4 #define SIDEBAND_PROTOCOL_ERROR -2
5 #define SIDEBAND_REMOTE_ERROR -1
7 #define DEFAULT_PACKET_MAX 1000
9 int recv_sideband(const char *me, int in_stream, int out, int err, char *, int);
10 ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);
12 #endif