summaryrefslogtreecommitdiff
path: root/proto_bin.h
blob: 4f4e0041c94767e1a8456f752657176e72fc84b9 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef PROTO_BIN_H
#define PROTO_BIN_H

/* binary protocol handlers */
int try_read_command_binary(conn *c);
void complete_nread_binary(conn *c);
void write_bin_error(conn *c, protocol_binary_response_status err,
                            const char *errstr, int swallow);

#endif