Home | History | Annotate | Download | only in keystore

Lines Matching defs:code

93  *     code [length_1 message_1 ... length_n message_n] end-of-file
94 * where code is one byte long and lengths are unsigned 16-bit integers in
99 static int recv_code(int8_t *code)
101 return recv(the_socket, code, 1, 0) == 1;
134 static void send_code(int8_t code)
136 send(the_socket, &code, 1, 0);
240 * it will be treated as a response code and transmitted to the client. Note
469 int8_t code;
499 static int8_t process(int8_t code) {
507 while (action->code && action->code != code) {
510 if (!action->code) {