Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sideband.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90b385580ec6f8f7b099c5aa7576c8a818bc633c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SIDEBAND_H
#define SIDEBAND_H

#define SIDEBAND_PROTOCOL_ERROR -2
#define SIDEBAND_REMOTE_ERROR -1

#define DEFAULT_PACKET_MAX 1000

int recv_sideband(const char *me, int in_stream, int out, int err, char *, int);

#endif