Home
last modified time | relevance | path

Searched refs:tlsflags (Results 1 – 4 of 4) sorted by relevance

/openbsd/usr.sbin/relayd/
H A Dparse.y1078 p->tlsflags = TLSFLAG_DEFAULT;
1098 if ((proto->tlsflags & TLSFLAG_VERSION) == 0) {
1122 } tlsflags
1228 tlsflags_l : tlsflags comma tlsflags_l
1229 | tlsflags
1232 tlsflags : SESSION TICKETS { proto->tickets = 1; }
1364 | NO flag { proto->tlsflags &= ~($2); }
1365 | flag { proto->tlsflags |= $1; }
H A Drelay.c280 if ((rlay->rl_conf.flags & (F_TLS|F_TLSCLIENT)) && proto->tlsflags) in relay_protodebug()
282 printb_flags(proto->tlsflags, TLSFLAG_BITS)); in relay_protodebug()
2068 if (proto->tlsflags & TLSFLAG_TLSV1_2) in relay_tls_ctx_create_proto()
2070 if (proto->tlsflags & TLSFLAG_TLSV1_3) in relay_tls_ctx_create_proto()
2084 if ((proto->tlsflags & TLSFLAG_CIPHER_SERVER_PREF) == 0) in relay_tls_ctx_create_proto()
H A Drelayd.h740 u_int8_t tlsflags; member
H A Dconfig.c106 env->sc_proto_default.tlsflags = TLSFLAG_DEFAULT; in config_init()