1 #ifndef PROTO_BIN_H
2 #define PROTO_BIN_H
3 
4 /* binary protocol handlers */
5 int try_read_command_binary(conn *c);
6 void complete_nread_binary(conn *c);
7 void write_bin_error(conn *c, protocol_binary_response_status err,
8                             const char *errstr, int swallow);
9 
10 #endif
11