File: proto_bin.h

package info (click to toggle)
memcached 1.6.39-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,320 kB
  • sloc: ansic: 62,281; perl: 12,500; sh: 4,569; makefile: 468; python: 402; xml: 59
file content (10 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (4)
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