| /src/external/bsd/unbound/dist/daemon/ |
| daemon.h | 94 /** reuseport is enabled if true */ 95 int reuseport; member in struct:daemon
|
| daemon.c | 612 daemon->reuseport = 0; 625 /* see if we want to reuseport */ 628 daemon->reuseport = 1; 630 /* try to use reuseport */ 632 &daemon->reuseport); 638 if(daemon->reuseport) { 639 /* reuseport was successful, allocate for it */ 643 * reuseport not enabled or did not work */ 659 if(daemon->reuseport) { 660 /* continue to use reuseport */ [all...] |
| remote.c | 2992 (worker->daemon->reuseport?" reuseport":""), 4963 FR_CHECK_CHANGED_CFG("so-reuseport", so_reuseport, changed_str); 5383 if(daemon->reuseport) {
|
| /src/external/bsd/unbound/dist/services/ |
| listen_dnsport.h | 159 * @param reuseport: set to true if you want reuseport, or NULL to not have it, 160 * set to false on exit if reuseport failed to apply (because of no 165 char** ifs, int num_ifs, int* reuseport); 275 * @param reuseport: if nonNULL and true, try to set SO_REUSEPORT on 285 int snd, int listen, int* reuseport, int transparent, int freebind, int use_systemd, int dscp); 292 * @param reuseport: if nonNULL and true, try to set SO_REUSEPORT on 304 int* reuseport, int transparent, int mss, int nodelay, int freebind,
|
| listen_dnsport.c | 245 int rcv, int snd, int listen, int* reuseport, int transparent, 333 if (reuseport && *reuseport && 342 *reuseport = 0; 351 if (reuseport && *reuseport && 360 *reuseport = 0; 364 (void)reuseport; 713 int* reuseport, int transparent, int mss, int nodelay, int freebind, 820 if (reuseport && *reuseport & [all...] |
| /src/tests/net/inpcb/ |
| inpcb_bind.c | 34 runtest(int *sockp, struct addrinfo *ai, int reuseaddr, int reuseport, 55 if (reuseport) { 96 reuseaddr ? "REUSEADDR" : "", reuseport ? "REUSEPORT" : ""); 101 reuseaddr ? "REUSEADDR" : "", reuseport ? "REUSEPORT" : "",
|
| /src/sys/netinet/ |
| in_pcb.c | 371 int reuseport = (so->so_options & SO_REUSEPORT); local 383 reuseport = SO_REUSEADDR|SO_REUSEPORT; 417 if (t6 && (reuseport & t6->inp_socket->so_options) == 0) 420 if (!!reuseport != !!vestige.reuse_port) { 451 if (t && (reuseport & t->inp_socket->so_options) == 0) 455 && !(reuseport && vestige.reuse_port))
|
| /src/sys/netinet6/ |
| in6_pcb.c | 237 int wild = 0, reuseport = (so->so_options & SO_REUSEPORT); local 270 reuseport = SO_REUSEADDR|SO_REUSEPORT; 282 if (t && (reuseport & t->inp_socket->so_options) == 0) 286 && !(reuseport && vestige.reuse_port)) 299 if (t && (reuseport & t->inp_socket->so_options) == 0) 303 && !(reuseport && vestige.reuse_port))
|
| /src/external/bsd/nsd/dist/ |
| nsd.h | 291 int reuseport; member in struct:nsd
|
| server.c | 1312 if(nsd->reuseport && reuseport_works && *reuseport_works) 1386 if(nsd->reuseport && reuseport_works && *reuseport_works) 1434 * Initialize the server, reuseport, create and bind the sockets. 1440 int reuseport = 1; /* Determine if REUSEPORT works. */ local 1444 if(open_udp_socket(nsd, &nsd->udp[i], &reuseport) == -1 || 1445 open_tcp_socket(nsd, &nsd->tcp[i], &reuseport) == -1) 1451 if(nsd->reuseport && reuseport) { 1452 size_t ifs = nsd->ifs * nsd->reuseport; [all...] |
| options.h | 128 int reuseport; member in struct:nsd_options
|
| nsd-checkconf.c | 410 SERV_GET_BIN(reuseport, o); 627 printf("\treuseport: %s\n", opt->reuseport?"yes":"no");
|
| nsd.c | 1135 if(nsd.options->reuseport && nsd.child_count > 1) { 1136 nsd.reuseport = nsd.child_count;
|
| configparser.y | 411 { cfg_parser->opt->reuseport = $2; }
|
| configparser.c | 1942 { cfg_parser->opt->reuseport = (yyvsp[0].bln); }
|
| options.c | 103 opt->reuseport = 0;
|
| /src/external/bsd/unbound/dist/testcode/ |
| fake_event.c | 1435 int* ATTR_UNUSED(reuseport)) 1757 int ATTR_UNUSED(listen), int* ATTR_UNUSED(reuseport),
|