https://github.com/git/git
Raw File
Tip revision: 9877106b01cbd346b862cc8cd2c52e496dd40ed5 authored by Johannes Schindelin on 04 December 2019, 21:22:52 UTC
Git 2.18.2
Tip revision: 9877106
sideband.h
#ifndef SIDEBAND_H
#define SIDEBAND_H

#define SIDEBAND_PROTOCOL_ERROR -2
#define SIDEBAND_REMOTE_ERROR -1

int recv_sideband(const char *me, int in_stream, int out);
void send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top