]> git.ipfire.org Git - thirdparty/git.git/blame - http-walker.c
Merge branch 'jk/push-deadlock-regression-fix' into maint
[thirdparty/git.git] / http-walker.c
CommitLineData
6eb7ed54
DB
1#include "cache.h"
2#include "commit.h"
30ae764b 3#include "walker.h"
29508e1e 4#include "http.h"
94e99012 5#include "list.h"
abcbdc03 6#include "transport.h"
7baa3e86 7
9cba13ca 8struct alt_base {
2afea3bc 9 char *base;
b3661567
DB
10 int got_indices;
11 struct packed_git *packs;
12 struct alt_base *next;
13};
14
e388ab74 15enum object_request_state {
1d389ab6
NH
16 WAITING,
17 ABORTED,
18 ACTIVE,
4b05548f 19 COMPLETE
1d389ab6 20};
6eb7ed54 21
9cba13ca 22struct object_request {
30ae764b 23 struct walker *walker;
1d389ab6
NH
24 unsigned char sha1[20];
25 struct alt_base *repo;
e388ab74 26 enum object_request_state state;
5424bc55 27 struct http_object_request *req;
94e99012 28 struct list_head node;
1d389ab6
NH
29};
30
e388ab74 31struct alternates_request {
30ae764b 32 struct walker *walker;
8e29f6a0 33 const char *base;
54ba4c5f 34 struct strbuf *url;
028c2976 35 struct strbuf *buffer;
acc075a8
NH
36 struct active_request_slot *slot;
37 int http_specific;
38};
39
30ae764b
DB
40struct walker_data {
41 const char *url;
42 int got_alternates;
43 struct alt_base *alt;
30ae764b
DB
44};
45
94e99012 46static LIST_HEAD(object_queue_head);
bc8f2652 47
30ae764b 48static void fetch_alternates(struct walker *walker, const char *base);
1d389ab6 49
29508e1e 50static void process_object_response(void *callback_data);
1d389ab6 51
30ae764b
DB
52static void start_object_request(struct walker *walker,
53 struct object_request *obj_req)
1d389ab6 54{
1d389ab6 55 struct active_request_slot *slot;
5424bc55 56 struct http_object_request *req;
1d389ab6 57
5424bc55
TRC
58 req = new_http_object_request(obj_req->repo->base, obj_req->sha1);
59 if (req == NULL) {
e388ab74 60 obj_req->state = ABORTED;
1d389ab6
NH
61 return;
62 }
5424bc55 63 obj_req->req = req;
1d389ab6 64
5424bc55 65 slot = req->slot;
29508e1e 66 slot->callback_func = process_object_response;
e388ab74 67 slot->callback_data = obj_req;
1d389ab6 68
a7a8d378 69 /* Try to get the request started, abort the request on error */
e388ab74 70 obj_req->state = ACTIVE;
1d389ab6 71 if (!start_active_slot(slot)) {
e388ab74 72 obj_req->state = ABORTED;
5424bc55 73 release_http_object_request(req);
e388ab74 74 return;
1d389ab6 75 }
1d389ab6
NH
76}
77
e388ab74 78static void finish_object_request(struct object_request *obj_req)
1d389ab6 79{
5424bc55 80 if (finish_http_object_request(obj_req->req))
1d389ab6 81 return;
1d389ab6 82
5424bc55 83 if (obj_req->req->rename == 0)
30ae764b 84 walker_say(obj_req->walker, "got %s\n", sha1_to_hex(obj_req->sha1));
1d389ab6
NH
85}
86
29508e1e
NH
87static void process_object_response(void *callback_data)
88{
e388ab74
NH
89 struct object_request *obj_req =
90 (struct object_request *)callback_data;
30ae764b
DB
91 struct walker *walker = obj_req->walker;
92 struct walker_data *data = walker->data;
93 struct alt_base *alt = data->alt;
29508e1e 94
5424bc55 95 process_http_object_request(obj_req->req);
e388ab74 96 obj_req->state = COMPLETE;
29508e1e
NH
97
98 /* Use alternates if necessary */
5424bc55 99 if (missing_target(obj_req->req)) {
30ae764b 100 fetch_alternates(walker, alt->base);
e388ab74
NH
101 if (obj_req->repo->next != NULL) {
102 obj_req->repo =
103 obj_req->repo->next;
5424bc55 104 release_http_object_request(obj_req->req);
30ae764b 105 start_object_request(walker, obj_req);
29508e1e
NH
106 return;
107 }
108 }
109
e388ab74 110 finish_object_request(obj_req);
29508e1e
NH
111}
112
e388ab74 113static void release_object_request(struct object_request *obj_req)
1d389ab6 114{
5424bc55
TRC
115 if (obj_req->req !=NULL && obj_req->req->localfile != -1)
116 error("fd leakage in release: %d", obj_req->req->localfile);
1d389ab6 117
94e99012 118 list_del(&obj_req->node);
e388ab74 119 free(obj_req);
1d389ab6
NH
120}
121
a7a8d378 122#ifdef USE_CURL_MULTI
30ae764b 123static int fill_active_slot(struct walker *walker)
1d389ab6 124{
45c17412 125 struct object_request *obj_req;
94e99012 126 struct list_head *pos, *tmp, *head = &object_queue_head;
1d389ab6 127
94e99012
EW
128 list_for_each_safe(pos, tmp, head) {
129 obj_req = list_entry(pos, struct object_request, node);
e388ab74
NH
130 if (obj_req->state == WAITING) {
131 if (has_sha1_file(obj_req->sha1))
09db444f 132 obj_req->state = COMPLETE;
45c17412 133 else {
30ae764b 134 start_object_request(walker, obj_req);
45c17412
DB
135 return 1;
136 }
f1a906a3 137 }
8fcf7f9a 138 }
45c17412 139 return 0;
1d389ab6 140}
a7a8d378 141#endif
1d389ab6 142
30ae764b 143static void prefetch(struct walker *walker, unsigned char *sha1)
1d389ab6 144{
e388ab74 145 struct object_request *newreq;
30ae764b 146 struct walker_data *data = walker->data;
1d389ab6
NH
147
148 newreq = xmalloc(sizeof(*newreq));
30ae764b 149 newreq->walker = walker;
e702496e 150 hashcpy(newreq->sha1, sha1);
30ae764b 151 newreq->repo = data->alt;
1d389ab6 152 newreq->state = WAITING;
5424bc55 153 newreq->req = NULL;
1d389ab6 154
e9176745 155 http_is_verbose = walker->get_verbosely;
94e99012 156 list_add_tail(&newreq->node, &object_queue_head);
29508e1e 157
a7a8d378 158#ifdef USE_CURL_MULTI
29508e1e
NH
159 fill_active_slots();
160 step_active_slots();
a7a8d378 161#endif
1d389ab6
NH
162}
163
abcbdc03
JK
164static int is_alternate_allowed(const char *url)
165{
166 const char *protocols[] = {
167 "http", "https", "ftp", "ftps"
168 };
169 int i;
170
171 for (i = 0; i < ARRAY_SIZE(protocols); i++) {
172 const char *end;
173 if (skip_prefix(url, protocols[i], &end) &&
174 starts_with(end, "://"))
175 break;
176 }
177
178 if (i >= ARRAY_SIZE(protocols)) {
179 warning("ignoring alternate with unknown protocol: %s", url);
180 return 0;
181 }
182 if (!is_transport_allowed(protocols[i], 0)) {
183 warning("ignoring alternate with restricted protocol: %s", url);
184 return 0;
185 }
186
187 return 1;
188}
189
e388ab74 190static void process_alternates_response(void *callback_data)
b3661567 191{
e388ab74
NH
192 struct alternates_request *alt_req =
193 (struct alternates_request *)callback_data;
30ae764b
DB
194 struct walker *walker = alt_req->walker;
195 struct walker_data *cdata = walker->data;
acc075a8 196 struct active_request_slot *slot = alt_req->slot;
30ae764b 197 struct alt_base *tail = cdata->alt;
8e29f6a0 198 const char *base = alt_req->base;
a04ff3ec 199 const char null_byte = '\0';
acc075a8
NH
200 char *data;
201 int i = 0;
1d389ab6 202
acc075a8
NH
203 if (alt_req->http_specific) {
204 if (slot->curl_result != CURLE_OK ||
028c2976 205 !alt_req->buffer->len) {
acc075a8
NH
206
207 /* Try reusing the slot to get non-http alternates */
208 alt_req->http_specific = 0;
54ba4c5f
JK
209 strbuf_reset(alt_req->url);
210 strbuf_addf(alt_req->url, "%s/objects/info/alternates",
211 base);
acc075a8 212 curl_easy_setopt(slot->curl, CURLOPT_URL,
54ba4c5f 213 alt_req->url->buf);
acc075a8
NH
214 active_requests++;
215 slot->in_use = 1;
c9826473
NH
216 if (slot->finished != NULL)
217 (*slot->finished) = 0;
a3f583cb 218 if (!start_active_slot(slot)) {
30ae764b 219 cdata->got_alternates = -1;
29508e1e 220 slot->in_use = 0;
c9826473
NH
221 if (slot->finished != NULL)
222 (*slot->finished) = 1;
1d389ab6 223 }
a3f583cb 224 return;
b3661567 225 }
acc075a8 226 } else if (slot->curl_result != CURLE_OK) {
be4a015b 227 if (!missing_target(slot)) {
30ae764b 228 cdata->got_alternates = -1;
acc075a8
NH
229 return;
230 }
b3661567
DB
231 }
232
a04ff3ec 233 fwrite_buffer((char *)&null_byte, 1, 1, alt_req->buffer);
028c2976
MH
234 alt_req->buffer->len--;
235 data = alt_req->buffer->buf;
1b0c1e67 236
028c2976 237 while (i < alt_req->buffer->len) {
b3661567 238 int posn = i;
028c2976 239 while (posn < alt_req->buffer->len && data[posn] != '\n')
b3661567
DB
240 posn++;
241 if (data[posn] == '\n') {
1b0c1e67
DB
242 int okay = 0;
243 int serverlen = 0;
244 struct alt_base *newalt;
b3661567 245 if (data[i] == '/') {
4c42aa1a
TRC
246 /*
247 * This counts
5df1e0d0
JH
248 * http://git.host/pub/scm/linux.git/
249 * -----------here^
250 * so memcpy(dst, base, serverlen) will
251 * copy up to "...git.host".
252 */
253 const char *colon_ss = strstr(base,"://");
254 if (colon_ss) {
255 serverlen = (strchr(colon_ss + 3, '/')
256 - base);
257 okay = 1;
258 }
1b0c1e67 259 } else if (!memcmp(data + i, "../", 3)) {
4c42aa1a
TRC
260 /*
261 * Relative URL; chop the corresponding
5df1e0d0
JH
262 * number of subpath from base (and ../
263 * from data), and concatenate the result.
264 *
265 * The code first drops ../ from data, and
266 * then drops one ../ from data and one path
267 * from base. IOW, one extra ../ is dropped
268 * from data than path is dropped from base.
269 *
270 * This is not wrong. The alternate in
271 * http://git.host/pub/scm/linux.git/
272 * to borrow from
273 * http://git.host/pub/scm/linus.git/
274 * is ../../linus.git/objects/. You need
275 * two ../../ to borrow from your direct
276 * neighbour.
277 */
1b0c1e67
DB
278 i += 3;
279 serverlen = strlen(base);
8fcf7f9a 280 while (i + 2 < posn &&
1b0c1e67
DB
281 !memcmp(data + i, "../", 3)) {
282 do {
283 serverlen--;
284 } while (serverlen &&
285 base[serverlen - 1] != '/');
286 i += 3;
287 }
a9486b02 288 /* If the server got removed, give up. */
8fcf7f9a 289 okay = strchr(base, ':') - base + 3 <
4c42aa1a 290 serverlen;
acc075a8 291 } else if (alt_req->http_specific) {
1b0c1e67
DB
292 char *colon = strchr(data + i, ':');
293 char *slash = strchr(data + i, '/');
294 if (colon && slash && colon < data + posn &&
295 slash < data + posn && colon < slash) {
296 okay = 1;
297 }
298 }
1b0c1e67 299 if (okay) {
59b8263a
RS
300 struct strbuf target = STRBUF_INIT;
301 strbuf_add(&target, base, serverlen);
d61434ae
JK
302 strbuf_add(&target, data + i, posn - i);
303 if (!strbuf_strip_suffix(&target, "objects")) {
304 warning("ignoring alternate that does"
305 " not end in 'objects': %s",
306 target.buf);
307 strbuf_release(&target);
308 } else if (is_alternate_allowed(target.buf)) {
abcbdc03
JK
309 warning("adding alternate object store: %s",
310 target.buf);
311 newalt = xmalloc(sizeof(*newalt));
312 newalt->next = NULL;
313 newalt->base = strbuf_detach(&target, NULL);
314 newalt->got_indices = 0;
315 newalt->packs = NULL;
316
317 while (tail->next != NULL)
318 tail = tail->next;
319 tail->next = newalt;
320 }
b3661567
DB
321 }
322 }
323 i = posn + 1;
324 }
bc8f2652 325
30ae764b 326 cdata->got_alternates = 1;
acc075a8
NH
327}
328
30ae764b 329static void fetch_alternates(struct walker *walker, const char *base)
acc075a8 330{
028c2976 331 struct strbuf buffer = STRBUF_INIT;
54ba4c5f 332 struct strbuf url = STRBUF_INIT;
acc075a8 333 struct active_request_slot *slot;
cb754fdf 334 struct alternates_request alt_req;
30ae764b 335 struct walker_data *cdata = walker->data;
acc075a8 336
cb4d2d35
JK
337 if (http_follow_config != HTTP_FOLLOW_ALWAYS)
338 return;
339
4c42aa1a
TRC
340 /*
341 * If another request has already started fetching alternates,
342 * wait for them to arrive and return to processing this request's
343 * curl message
344 */
29508e1e 345#ifdef USE_CURL_MULTI
30ae764b 346 while (cdata->got_alternates == 0) {
29508e1e 347 step_active_slots();
acc075a8 348 }
29508e1e 349#endif
acc075a8
NH
350
351 /* Nothing to do if they've already been fetched */
30ae764b 352 if (cdata->got_alternates == 1)
acc075a8
NH
353 return;
354
355 /* Start the fetch */
30ae764b 356 cdata->got_alternates = 0;
acc075a8 357
30ae764b 358 if (walker->get_verbosely)
acc075a8 359 fprintf(stderr, "Getting alternates list for %s\n", base);
8fcf7f9a 360
54ba4c5f 361 strbuf_addf(&url, "%s/objects/info/http-alternates", base);
acc075a8 362
4c42aa1a
TRC
363 /*
364 * Use a callback to process the result, since another request
365 * may fail and need to have alternates loaded before continuing
366 */
acc075a8 367 slot = get_active_slot();
e388ab74 368 slot->callback_func = process_alternates_response;
30ae764b 369 alt_req.walker = walker;
acc075a8
NH
370 slot->callback_data = &alt_req;
371
372 curl_easy_setopt(slot->curl, CURLOPT_FILE, &buffer);
29508e1e 373 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer);
54ba4c5f 374 curl_easy_setopt(slot->curl, CURLOPT_URL, url.buf);
acc075a8
NH
375
376 alt_req.base = base;
54ba4c5f 377 alt_req.url = &url;
acc075a8
NH
378 alt_req.buffer = &buffer;
379 alt_req.http_specific = 1;
380 alt_req.slot = slot;
381
382 if (start_active_slot(slot))
383 run_active_slot(slot);
384 else
30ae764b 385 cdata->got_alternates = -1;
acc075a8 386
028c2976 387 strbuf_release(&buffer);
54ba4c5f 388 strbuf_release(&url);
b3661567
DB
389}
390
30ae764b 391static int fetch_indices(struct walker *walker, struct alt_base *repo)
182005b9 392{
b8caac2b 393 int ret;
1d389ab6 394
b3661567 395 if (repo->got_indices)
182005b9
DB
396 return 0;
397
30ae764b 398 if (walker->get_verbosely)
6fd72e39 399 fprintf(stderr, "Getting pack list for %s\n", repo->base);
8fcf7f9a 400
b8caac2b
TRC
401 switch (http_get_info_packs(repo->base, &repo->packs)) {
402 case HTTP_OK:
403 case HTTP_MISSING_TARGET:
404 repo->got_indices = 1;
405 ret = 0;
406 break;
407 default:
5e3a7691 408 repo->got_indices = 0;
b8caac2b 409 ret = -1;
b3661567 410 }
182005b9 411
3a462bc9 412 return ret;
182005b9
DB
413}
414
07c19e72 415static int http_fetch_pack(struct walker *walker, struct alt_base *repo, unsigned char *sha1)
182005b9 416{
182005b9 417 struct packed_git *target;
49a0f240 418 int ret;
cb754fdf 419 struct slot_results results;
2264dfa5 420 struct http_pack_request *preq;
182005b9 421
30ae764b 422 if (fetch_indices(walker, repo))
182005b9 423 return -1;
b3661567 424 target = find_sha1_pack(sha1, repo->packs);
182005b9 425 if (!target)
b3661567 426 return -1;
182005b9 427
30ae764b 428 if (walker->get_verbosely) {
182005b9
DB
429 fprintf(stderr, "Getting pack %s\n",
430 sha1_to_hex(target->sha1));
431 fprintf(stderr, " which contains %s\n",
432 sha1_to_hex(sha1));
433 }
434
2264dfa5
TRC
435 preq = new_http_pack_request(target, repo->base);
436 if (preq == NULL)
437 goto abort;
438 preq->lst = &repo->packs;
439 preq->slot->results = &results;
182005b9 440
2264dfa5
TRC
441 if (start_active_slot(preq->slot)) {
442 run_active_slot(preq->slot);
c8568e13 443 if (results.curl_result != CURLE_OK) {
2264dfa5
TRC
444 error("Unable to get pack file %s\n%s", preq->url,
445 curl_errorstr);
446 goto abort;
1d389ab6
NH
447 }
448 } else {
2264dfa5
TRC
449 error("Unable to start request");
450 goto abort;
182005b9
DB
451 }
452
2264dfa5
TRC
453 ret = finish_http_pack_request(preq);
454 release_http_pack_request(preq);
49a0f240 455 if (ret)
b721e01f 456 return ret;
49a0f240 457
182005b9 458 return 0;
2264dfa5
TRC
459
460abort:
461 return -1;
182005b9
DB
462}
463
53f31389
MW
464static void abort_object_request(struct object_request *obj_req)
465{
53f31389
MW
466 release_object_request(obj_req);
467}
468
43b8bba6 469static int fetch_object(struct walker *walker, unsigned char *sha1)
6eb7ed54
DB
470{
471 char *hex = sha1_to_hex(sha1);
29508e1e 472 int ret = 0;
94e99012 473 struct object_request *obj_req = NULL;
5424bc55 474 struct http_object_request *req;
94e99012 475 struct list_head *pos, *head = &object_queue_head;
1d389ab6 476
94e99012
EW
477 list_for_each(pos, head) {
478 obj_req = list_entry(pos, struct object_request, node);
479 if (!hashcmp(obj_req->sha1, sha1))
480 break;
481 }
e388ab74 482 if (obj_req == NULL)
1d389ab6
NH
483 return error("Couldn't find request for %s in the queue", hex);
484
e388ab74 485 if (has_sha1_file(obj_req->sha1)) {
5424bc55
TRC
486 if (obj_req->req != NULL)
487 abort_http_object_request(obj_req->req);
53f31389 488 abort_object_request(obj_req);
11f0dafe
NH
489 return 0;
490 }
491
a7a8d378 492#ifdef USE_CURL_MULTI
4c42aa1a 493 while (obj_req->state == WAITING)
29508e1e 494 step_active_slots();
a7a8d378 495#else
30ae764b 496 start_object_request(walker, obj_req);
a7a8d378 497#endif
6eb7ed54 498
5424bc55
TRC
499 /*
500 * obj_req->req might change when fetching alternates in the callback
501 * process_object_response; therefore, the "shortcut" variable, req,
502 * is used only after we're done with slots.
503 */
4c42aa1a 504 while (obj_req->state == ACTIVE)
5424bc55
TRC
505 run_active_slot(obj_req->req->slot);
506
507 req = obj_req->req;
4c42aa1a 508
5424bc55
TRC
509 if (req->localfile != -1) {
510 close(req->localfile);
511 req->localfile = -1;
313c4714 512 }
6eb7ed54 513
17966c0a
EW
514 /*
515 * we turned off CURLOPT_FAILONERROR to avoid losing a
516 * persistent connection and got CURLE_OK.
517 */
3680f16f 518 if (req->http_code >= 300 && req->curl_result == CURLE_OK &&
17966c0a 519 (starts_with(req->url, "http://") ||
3680f16f 520 starts_with(req->url, "https://"))) {
17966c0a 521 req->curl_result = CURLE_HTTP_RETURNED_ERROR;
3680f16f
JK
522 xsnprintf(req->errorstr, sizeof(req->errorstr),
523 "HTTP request failed");
524 }
17966c0a 525
e388ab74 526 if (obj_req->state == ABORTED) {
29508e1e 527 ret = error("Request for %s aborted", hex);
5424bc55
TRC
528 } else if (req->curl_result != CURLE_OK &&
529 req->http_code != 416) {
530 if (missing_target(req))
e2029eb9
PB
531 ret = -1; /* Be silent, it is probably in a pack. */
532 else
533 ret = error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
5424bc55
TRC
534 req->errorstr, req->curl_result,
535 req->http_code, hex);
536 } else if (req->zret != Z_STREAM_END) {
30ae764b 537 walker->corrupt_object_found++;
5424bc55
TRC
538 ret = error("File %s (%s) corrupt", hex, req->url);
539 } else if (hashcmp(obj_req->sha1, req->real_sha1)) {
bd2afde8 540 ret = error("File %s has bad hash", hex);
5424bc55 541 } else if (req->rename < 0) {
7b934ec0 542 ret = error("unable to write sha1 filename %s",
0da8b2e7 543 sha1_file_name(req->sha1));
6eb7ed54 544 }
49a0f240 545
5424bc55 546 release_http_object_request(req);
e388ab74 547 release_object_request(obj_req);
29508e1e 548 return ret;
6eb7ed54
DB
549}
550
30ae764b 551static int fetch(struct walker *walker, unsigned char *sha1)
b3661567 552{
30ae764b
DB
553 struct walker_data *data = walker->data;
554 struct alt_base *altbase = data->alt;
1d389ab6 555
43b8bba6 556 if (!fetch_object(walker, sha1))
1d389ab6 557 return 0;
b3661567 558 while (altbase) {
07c19e72 559 if (!http_fetch_pack(walker, altbase, sha1))
b3661567 560 return 0;
30ae764b 561 fetch_alternates(walker, data->alt->base);
b3661567
DB
562 altbase = altbase->next;
563 }
bd2afde8 564 return error("Unable to find %s under %s", sha1_to_hex(sha1),
30ae764b 565 data->alt->base);
b3661567
DB
566}
567
c13b2633 568static int fetch_ref(struct walker *walker, struct ref *ref)
cd541a68 569{
30ae764b 570 struct walker_data *data = walker->data;
c13b2633 571 return http_fetch_ref(data->alt->base, ref);
cd541a68
DB
572}
573
30ae764b
DB
574static void cleanup(struct walker *walker)
575{
09ae9aca
TRC
576 struct walker_data *data = walker->data;
577 struct alt_base *alt, *alt_next;
578
579 if (data) {
580 alt = data->alt;
581 while (alt) {
582 alt_next = alt->next;
583
584 free(alt->base);
585 free(alt);
586
587 alt = alt_next;
588 }
589 free(data);
590 walker->data = NULL;
591 }
30ae764b
DB
592}
593
888692b7 594struct walker *get_http_walker(const char *url)
6eb7ed54 595{
9c880b3e 596 char *s;
30ae764b
DB
597 struct walker_data *data = xmalloc(sizeof(struct walker_data));
598 struct walker *walker = xmalloc(sizeof(struct walker));
6eb7ed54 599
30ae764b 600 data->alt = xmalloc(sizeof(*data->alt));
95244ae3 601 data->alt->base = xstrdup(url);
30ae764b 602 for (s = data->alt->base + strlen(data->alt->base) - 1; *s == '/'; --s)
9c880b3e 603 *s = 0;
6eb7ed54 604
30ae764b
DB
605 data->alt->got_indices = 0;
606 data->alt->packs = NULL;
607 data->alt->next = NULL;
608 data->got_alternates = -1;
fc57b6aa 609
30ae764b
DB
610 walker->corrupt_object_found = 0;
611 walker->fetch = fetch;
612 walker->fetch_ref = fetch_ref;
613 walker->prefetch = prefetch;
614 walker->cleanup = cleanup;
615 walker->data = data;
6eb7ed54 616
30ae764b
DB
617#ifdef USE_CURL_MULTI
618 add_fill_function(walker, (int (*)(void *)) fill_active_slot);
619#endif
8e29f6a0 620
30ae764b 621 return walker;
6eb7ed54 622}