Revision 1df2046d270011837c904d2b568b599bf61cdb87 authored by Junio C Hamano on 17 January 2017, 23:19:03 UTC, committed by Junio C Hamano on 17 January 2017, 23:19:03 UTC
Code simplification.

* nd/qsort-in-merge-recursive:
  merge-recursive.c: use string_list_sort instead of qsort
2 parent s 48d23c1 + fa6ca11
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);
void send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max);

#endif
back to top