Home | History | Annotate | Download | only in keystore

Lines Matching defs:code

508  *     code [length_1 message_1 ... length_n message_n] end-of-file
509 * where code
512 static int recv_code(int sock, int8_t* code) {
513 return recv(sock, code, 1, 0) == 1;
544 static void send_code(int sock, int8_t code) {
545 send(sock, &code, 1, 0);
558 * it will be treated as a response code and transmitted to the client. Note
687 int8_t code;
718 static ResponseCode process(KeyStore* keyStore, int sock, uid_t uid, int8_t code) {
726 while (action->code && action->code != code) {
729 if (!action->code) {