/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Move sideband client side support into reusable form.
[git/git.git]
/
sideband.h
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
8
9
int
recv_sideband
(
const char
*
me
,
int
in_stream
,
int
out
,
int
err
,
char
*,
int
);
10
11
#endif