Lines Matching defs:duplr
811 ap_listen_rec *duplr;
820 lr->protocol, &duplr)) != APR_SUCCESS) {
827 duplr = apr_palloc(p, sizeof(ap_listen_rec));
828 duplr->slave = NULL;
829 duplr->protocol = apr_pstrdup(p, lr->protocol);
833 duplr->bind_addr = sa;
834 duplr->next = NULL;
835 stat = apr_socket_create(&duplr->sd, duplr->bind_addr->family,
841 duplr->bind_addr);
844 make_sock(p, duplr, 1);
848 stat = apr_socket_opt_set(duplr->sd, APR_SO_NONBLOCK, use_nonblock);
855 ap_apply_accept_filter(p, duplr, s);
858 (*buckets)[i] = last = duplr;
861 last->next = duplr;
862 last = duplr;