repo.or.cz
/
git
/
mjg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'jk/command-line-config-empty-string' into maint
[git/mjg.git]
/
sideband.h
blob
e46bed0b0158c0253bacb2a3db028770ad221666
1
#ifndef SIDEBAND_H
2
#define SIDEBAND_H
3
4
#define SIDEBAND_PROTOCOL_ERROR -2
5
#define SIDEBAND_REMOTE_ERROR -1
6
7
int
recv_sideband
(
const char
*
me
,
int
in_stream
,
int
out
);
8
ssize_t
send_sideband
(
int
fd
,
int
band
,
const char
*
data
,
ssize_t sz
,
int
packet_max
);
9
10
#endif