]> git.ipfire.org Git - thirdparty/git.git/blame - sideband.h
i18n: add no-op _() and N_() wrappers
[thirdparty/git.git] / sideband.h
CommitLineData
49a52b1d
JH
1#ifndef SIDEBAND_H
2#define SIDEBAND_H
3
4#define SIDEBAND_PROTOCOL_ERROR -2
5#define SIDEBAND_REMOTE_ERROR -1
6
7#define DEFAULT_PACKET_MAX 1000
d47f3db7 8#define LARGE_PACKET_MAX 65520
49a52b1d 9
34df8aba 10int recv_sideband(const char *me, int in_stream, int out);
958c24b1 11ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);
49a52b1d
JH
12
13#endif