Lines Matching refs:lp
617 ap_listen_rec *lp;
629 lp = ap_listeners;
630 while (lp && lp->protocol && strcasecmp(lp->protocol, "http") != 0) {
631 lp = lp->next;
633 if (!lp) {
634 lp = ap_listeners;
637 rv = apr_socket_create(&sock, lp->bind_addr->family, SOCK_STREAM, 0, p);
660 rv = apr_socket_connect(sock, lp->bind_addr);
673 "connect to listener on %pI", lp->bind_addr);
678 if (lp->protocol && strcasecmp(lp->protocol, "https") == 0) {