Lines Matching defs:status
13 const char *status;
32 client->status = "";
37 /* authentication has failed, try parse status.
38 we are only interested in extracting status if possible
41 const char *status = NULL, *value;
47 if (found_status && status == NULL) {
50 status = t_strdup(value);
53 strcmp(value, "status") == 0) {
61 if (status != NULL)
62 client->status = p_strdup(_client->pool, status);
73 client->status);
173 if (strcmp(key, "status") == 0) {
175 i_assert(client->status != NULL);
176 *value_r = client->status;