Merge branch 't/blob/pathinfo' into refs/top-bases/master
[git/gitweb.git] / sideband.h
blobd72db35d1e0dc109f75b292762013c11b86426aa
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
8 #define LARGE_PACKET_MAX 65520
10 int recv_sideband(const char *me, int in_stream, int out);
11 ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);
13 #endif