Lines Matching +defs:level +defs:list
13 * this list of conditions and the following disclaimer.
16 * this list of conditions and the following disclaimer in the documentation
903 void sock_list_insert(struct sock_list** list, struct sockaddr_storage* addr,
912 log_assert(list);
913 add->next = *list;
915 *list = add;
919 void sock_list_prepend(struct sock_list** list, struct sock_list* add)
926 last->next = *list;
927 *list = add;
930 int sock_list_find(struct sock_list* list, struct sockaddr_storage* addr,
933 while(list) {
934 if(len == list->len) {
936 &list->addr, list->len) == 0)
939 list = list->next;
944 void sock_list_merge(struct sock_list** list, struct regional* region,
949 if(!sock_list_find(*list, &p->addr, p->len))
950 sock_list_insert(list, &p->addr, p->len, region);
1090 log_cert(unsigned level, const char* str, void* cert)
1096 if(verbosity < level) return;
1113 verbose(level, "%s: \n%s", str, pp);
1179 /* if we have sha256, set the cipher list to have no known vulns */
1181 log_crypto_err("could not set cipher list with SSL_CTX_set_cipher_list");
1587 /** global lock list for openssl locks */