Revision 07586ebd4fd2ba273a1dae60403aa5affc352e29 authored by Michael J Gruber on 26 January 2015, 15:34:32 UTC, committed by Ralf Thielow on 26 January 2015, 18:36:04 UTC
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
1 parent 2f334c6
Raw File
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);
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top