| /openbsd/src/usr.sbin/relayd/ |
| D | relay.c | 267 relay_protodebug(struct relay *rlay) in relay_protodebug() argument 269 struct protocol *proto = rlay->rl_proto; in relay_protodebug() 276 printb_flags(rlay->rl_conf.flags, F_BITS)); in relay_protodebug() 280 if ((rlay->rl_conf.flags & (F_TLS|F_TLSCLIENT)) && proto->tlsflags) in relay_protodebug() 306 relay_privinit(struct relay *rlay) in relay_privinit() argument 308 log_debug("%s: adding relay %s", __func__, rlay->rl_conf.name); in relay_privinit() 311 relay_protodebug(rlay); in relay_privinit() 313 switch (rlay->rl_proto->type) { in relay_privinit() 315 relay_udp_privinit(rlay); in relay_privinit() 323 if (rlay->rl_conf.flags & F_UDP) in relay_privinit() [all …]
|
| D | config.c | 146 struct relay *rlay; in config_purge() local 178 while ((rlay = TAILQ_FIRST(env->sc_relays)) != NULL) in config_purge() 179 purge_relay(env, rlay); in config_purge() 823 config_setrelay(struct relayd *env, struct relay *rlay) in config_setrelay() argument 837 if (relay_privinit(rlay) == -1) in config_setrelay() 847 rlay->rl_conf.name, ps->ps_title[id], rlay->rl_s); in config_setrelay() 849 memcpy(&rl, &rlay->rl_conf, sizeof(rl)); in config_setrelay() 857 iov[c].iov_base = rlay->rl_tls_cakey; in config_setrelay() 867 if ((fd = dup(rlay->rl_s)) == -1) in config_setrelay() 873 __func__, rlay->rl_conf.name); in config_setrelay() [all …]
|
| D | relay_udp.c | 60 relay_udp_privinit(struct relay *rlay) in relay_udp_privinit() argument 62 if (rlay->rl_conf.flags & F_TLS) in relay_udp_privinit() 64 rlay->rl_conf.flags |= F_UDP; in relay_udp_privinit() 68 relay_udp_init(struct relayd *x_env, struct relay *rlay) in relay_udp_init() argument 70 struct protocol *proto = rlay->rl_proto; in relay_udp_init() 180 struct relay *rlay = con->se_relay; in relay_udp_response() local 181 struct protocol *proto = rlay->rl_proto; in relay_udp_response() 193 if (rlay->rl_conf.flags & F_DISABLE) in relay_udp_response() 203 (priv = (*proto->validate)(con, rlay, &ss, buf, len)) == NULL) in relay_udp_response() 214 struct relay *rlay = arg; in relay_udp_server() local [all …]
|
| D | relayd.c | 288 struct relay *rlay; in parent_configure() local 302 TAILQ_FOREACH(rlay, env->sc_relays, rl_entry) { in parent_configure() 304 if ((rlay->rl_conf.flags & (F_TLS|F_TLSCLIENT)) == in parent_configure() 305 (F_TLS|F_TLSCLIENT) && rlay->rl_tls_cacert_fd != -1) in parent_configure() 306 rlay->rl_conf.flags |= F_TLSINSPECT; in parent_configure() 308 config_setrelay(env, rlay); in parent_configure() 558 purge_relay(struct relayd *env, struct relay *rlay) in purge_relay() argument 565 if (event_initialized(&rlay->rl_ev)) in purge_relay() 566 event_del(&rlay->rl_ev); in purge_relay() 567 close(rlay->rl_s); in purge_relay() [all …]
|
| D | ca.c | 104 struct relay *rlay; in ca_launch() local 148 TAILQ_FOREACH(rlay, env->sc_relays, rl_entry) { in ca_launch() 149 if ((rlay->rl_conf.flags & (F_TLS|F_TLSCLIENT)) == 0) in ca_launch() 152 if (rlay->rl_tls_cacert_fd != -1 && in ca_launch() 153 rlay->rl_conf.tls_cakey_len) { in ca_launch() 154 if ((buf = relay_load_fd(rlay->rl_tls_cacert_fd, in ca_launch() 171 if ((in = BIO_new_mem_buf(rlay->rl_tls_cakey, in ca_launch() 172 rlay->rl_conf.tls_cakey_len)) == NULL) in ca_launch() 180 rlay->rl_tls_capkey = pkey; in ca_launch() 185 purge_key(&rlay->rl_tls_cakey, in ca_launch() [all …]
|
| D | parse.y | 112 static struct relay *rlay = NULL; variable 1843 rlay = r; 1846 struct relay_config *rlconf = &rlay->rl_conf; 1856 if (rlay->rl_conf.ss.ss_family == AF_UNSPEC) { 1858 rlay->rl_conf.name); 1861 if ((rlay->rl_conf.flags & (F_NATLOOK|F_DIVERT)) == 1864 "and peer options", rlay->rl_conf.name); 1867 if ((rlay->rl_conf.flags & (F_NATLOOK|F_DIVERT)) == 0 && 1868 rlay->rl_conf.dstss.ss_family == AF_UNSPEC && 1869 TAILQ_EMPTY(&rlay->rl_tables)) { [all …]
|
| D | pfe.c | 256 struct relay *rlay; in pfe_dispatch_relay() local 278 if ((rlay = relay_find(env, crs.id)) == NULL) in pfe_dispatch_relay() 280 bcopy(&crs, &rlay->rl_stats[crs.proc], sizeof(crs)); in pfe_dispatch_relay() 281 rlay->rl_stats[crs.proc].interval = in pfe_dispatch_relay() 357 struct relay *rlay; in show() local 392 TAILQ_FOREACH(rlay, env->sc_relays, rl_entry) { in show() 393 rlay->rl_stats[env->sc_conf.prefork_relay].id = EMPTY_ID; in show() 395 rlay, sizeof(*rlay)); in show() 397 &rlay->rl_stats, sizeof(rlay->rl_stats)); in show() 399 TAILQ_FOREACH(rlt, &rlay->rl_tables, rlt_entry) { in show()
|
| D | relay_http.c | 105 relay_http_init(struct relay *rlay) in relay_http_init() argument 107 rlay->rl_proto->close = relay_close_http; in relay_http_init() 112 relay_calc_skip_steps(&rlay->rl_proto->rules); in relay_http_init() 184 struct relay *rlay = con->se_relay; in relay_read_http() local 185 struct protocol *proto = rlay->rl_proto; in relay_read_http() 699 if (rlay->rl_conf.fwdmode == FWD_TRANS) { in relay_read_http() 1181 struct relay *rlay = con->se_relay; in relay_abort_http() local 1196 if (rlay->rl_proto->type != RELAY_PROTO_HTTP || in relay_abort_http() 1197 (rlay->rl_proto->flags & F_RETURN) == 0) { in relay_abort_http() 1206 if (print_host(&rlay->rl_conf.ss, hbuf, sizeof(hbuf)) == NULL) in relay_abort_http() [all …]
|
| /openbsd/src/usr.sbin/relayctl/ |
| D | relayctl.c | 349 struct relay *rlay; in show_summary_msg() local 398 rlay = imsg->data; in show_summary_msg() 400 rlay->rl_conf.id, "relay", rlay->rl_conf.name, "", in show_summary_msg() 401 print_relay_status(rlay->rl_conf.flags)); in show_summary_msg()
|
| /openbsd/src/gnu/usr.bin/binutils/gas/po/ |
| D | tr.po | 10557 msgstr "fazla '-rename-section' sınırlayıcısı ':' yoksayıldı"
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/po/ |
| D | tr.po | 5337 "Lütfen ayrıntılı bir hata raporu hazırlayın.\n" 19073 msgstr "%0 daki, '!' ve '/*' geçerli açıklama sınırlayıcılar değil"
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/gas/po/ |
| D | tr.po | 11714 msgstr "fazla '-rename-section' sınırlayıcısı ':' yoksayıldı"
|