5 * Receive multiplexed output stream over git native protocol.
6 * in_stream is the input stream from the remote, which carries data
7 * in pkt_line format with band designator. Demultiplex it into out
8 * and err and return error appropriately. Band #1 carries the
9 * primary payload. Things coming over band #2 is not necessarily
10 * error; they are usually informative message on the standard error
11 * stream, aka "verbose"). A message over band #3 is a signal that
12 * the remote died unexpectedly. A flush() concludes the stream.
14 int recv_sideband(const char *me
, int in_stream
, int out
, int err
, char *buf
, int bufsz
)
17 int len
= packet_read_line(in_stream
, buf
, bufsz
);
21 len
= sprintf(buf
, "%s: protocol error: no band designator\n", me
);
22 safe_write(err
, buf
, len
);
23 return SIDEBAND_PROTOCOL_ERROR
;
26 switch (buf
[0] & 0xFF) {
28 safe_write(err
, "remote: ", 8);
29 safe_write(err
, buf
+1, len
);
30 safe_write(err
, "\n", 1);
31 return SIDEBAND_REMOTE_ERROR
;
33 safe_write(err
, "remote: ", 8);
34 safe_write(err
, buf
+1, len
);
37 safe_write(out
, buf
+1, len
);
40 len
= sprintf(buf
+ 1,
41 "%s: protocol error: bad band #%d\n",
43 safe_write(err
, buf
+1, len
);
44 return SIDEBAND_PROTOCOL_ERROR
;
51 * fd is connected to the remote side; send the sideband data
52 * over multiplexed packet stream.
54 ssize_t
send_sideband(int fd
, int band
, const char *data
, ssize_t sz
, int packet_max
)
64 if (packet_max
- 5 < n
)
66 sprintf(hdr
, "%04x", n
+ 5);
68 safe_write(fd
, hdr
, 5);