• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/ssl/

Lines Matching refs:tail

598 	     CIPHER_ORDER **tail)
600 if (curr == *tail) return;
607 (*tail)->next=curr;
608 curr->prev= *tail;
610 *tail=curr;
614 CIPHER_ORDER **tail)
617 if (curr == *tail)
618 *tail=curr->prev;
851 CIPHER_ORDER *head, *tail, *curr, *next, *last;
864 tail = *tail_p;
868 next = tail;
874 last = tail;
931 ll_append_tail(&head, curr, &tail);
941 ll_append_tail(&head, curr, &tail);
952 ll_append_head(&head, curr, &tail);
963 if (tail == curr)
964 tail = curr->prev;
976 *tail_p = tail;
1289 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1322 co_list, &head, &tail);
1328 ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1329 ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1332 ssl_cipher_apply_rule(0, 0, 0, SSL_AES, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1335 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1338 ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, &head, &tail);
1343 ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1346 ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1347 /* ssl_cipher_apply_rule(0, 0, SSL_aDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); */
1348 ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1349 ssl_cipher_apply_rule(0, SSL_kPSK, 0,0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1350 ssl_cipher_apply_rule(0, SSL_kKRB5, 0,0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1353 ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1357 if (!ssl_cipher_strength_sort(&head, &tail))
1364 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1397 &head, &tail, ca_list);
1404 ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list);