2006-09-10 10:06:33 +02:00
|
|
|
#ifndef SIDEBAND_H
|
|
|
|
#define SIDEBAND_H
|
|
|
|
|
|
|
|
#define SIDEBAND_PROTOCOL_ERROR -2
|
|
|
|
#define SIDEBAND_REMOTE_ERROR -1
|
|
|
|
|
2009-03-10 22:54:17 +01:00
|
|
|
int recv_sideband(const char *me, int in_stream, int out);
|
2006-09-10 12:20:24 +02:00
|
|
|
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);
|
2006-09-10 10:06:33 +02:00
|
|
|
|
|
|
|
#endif
|