Lines Matching defs:sd
65 apr_socket_t *sd;
83 rv = apr_socket_create(&sd, sa->family, SOCK_STREAM, APR_PROTO_TCP, p);
85 apr_socket_timeout_set(sd, timeout);
87 rv = apr_socket_connect(sd, sa);
91 apr_socket_close(sd);
113 rv = apr_socket_send(sd, wbuf, &wlen);
119 apr_socket_close(sd);
127 return sd;
179 /* Read the OCSP response from the socket 'sd', using temporary memory
182 static OCSP_RESPONSE *read_response(apr_socket_t *sd, BIO *bio, conn_rec *c,
195 APR_BRIGADE_INSERT_TAIL(bb, apr_bucket_socket_create(sd, c->bucket_alloc));
290 apr_socket_t *sd;
301 sd = send_request(bio, uri, timeout, c, p);
302 if (sd == NULL) {
311 response = read_response(sd, bio, c, p);
313 apr_socket_close(sd);