Lines Matching refs:url
70 const char *url, in ahc_echo() argument
82 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
83 (void *) url, in ahc_echo()
98 char *url; in testLongUrlGet() local
115 url = malloc (VERY_LONG); in testLongUrlGet()
116 if (url == NULL) in testLongUrlGet()
121 memset (url, 'a', VERY_LONG); in testLongUrlGet()
122 url[VERY_LONG - 1] = '\0'; in testLongUrlGet()
123 memcpy (url, "http://127.0.0.1:1080/", strlen ("http://127.0.0.1:1080/")); in testLongUrlGet()
124 curl_easy_setopt (c, CURLOPT_URL, url); in testLongUrlGet()
142 free (url); in testLongUrlGet()
149 free (url); in testLongUrlGet()
154 free (url); in testLongUrlGet()
168 char *url; in testLongHeaderGet() local
186 url = malloc (VERY_LONG); in testLongHeaderGet()
187 if (url == NULL) in testLongHeaderGet()
192 memset (url, 'a', VERY_LONG); in testLongHeaderGet()
193 url[VERY_LONG - 1] = '\0'; in testLongHeaderGet()
194 url[VERY_LONG / 2] = ':'; in testLongHeaderGet()
195 url[VERY_LONG / 2 + 1] = ' '; in testLongHeaderGet()
196 header = curl_slist_append (header, url); in testLongHeaderGet()
218 free (url); in testLongHeaderGet()
226 free (url); in testLongHeaderGet()
232 free (url); in testLongHeaderGet()