aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib518.c
blob: e981e00801761a4bf82356eb462e02e0b01c32f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "test.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <mprintf.h>

#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif

#ifndef FD_SETSIZE
#error "this test requires FD_SETSIZE"
#endif

#define NUM_OPEN (FD_SETSIZE + 10)

#if defined(WIN32) || defined(_WIN32) || defined(MSDOS)
#define DEV_NULL "NUL"
#else
#define DEV_NULL "/dev/null"
#endif

int test(char *URL)
{
  CURLcode res;
  CURL *curl;
  int fd[NUM_OPEN];
  int i;

  /* open a lot of file descriptors */
  for (i = 0; i < NUM_OPEN; i++) {
    fd[i] = open(DEV_NULL, O_RDONLY);
    if (fd[i] == -1) {
      fprintf(stderr, "open: attempt #%i: failed to open %s\n", i, DEV_NULL);
      for (i--; i >= 0; i--)
        close(fd[i]);
      return CURLE_FAILED_INIT;
    }
  }

  curl = curl_easy_init();
  curl_easy_setopt(curl, CURLOPT_URL, URL);
  curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
  res = curl_easy_perform(curl);
  curl_easy_cleanup(curl);

  for (i = 0; i < NUM_OPEN; i++)
    close(fd[i]);

  return (int)res;
}