1 #ifndef PROTO_TEXT_H
2 #define PROTO_TEXT_H
3 
4 /* text protocol handlers */
5 void complete_nread_ascii(conn *c);
6 int try_read_command_asciiauth(conn *c);
7 int try_read_command_ascii(conn *c);
8 void process_command_ascii(conn *c, char *command);
9 
10 #endif
11