• Home
  • Raw
  • Download

Lines Matching refs:needle

3102                  struct connectdata *needle,  in ConnectionExists()  argument
3109 bool canPipeline = IsPipeliningPossible(data, needle); in ConnectionExists()
3113 (needle->handler->protocol & PROTO_FAMILY_HTTP) ? TRUE : FALSE; in ConnectionExists()
3121 if(canPipeline && Curl_pipeline_site_blacklisted(data, needle)) { in ConnectionExists()
3127 bundle = Curl_conncache_find_bundle(needle, data->state.conn_cache); in ConnectionExists()
3136 needle->host.name, (void *)bundle); in ConnectionExists()
3223 if((needle->handler->flags&PROTOPT_SSL) != in ConnectionExists()
3226 if(!(needle->handler->protocol & check->handler->protocol)) in ConnectionExists()
3230 if(needle->handler->flags&PROTOPT_SSL) { in ConnectionExists()
3236 if(needle->bits.proxy != check->bits.proxy) in ConnectionExists()
3245 if(needle->localdev || needle->localport) { in ConnectionExists()
3257 if((check->localport != needle->localport) || in ConnectionExists()
3258 (check->localportrange != needle->localportrange) || in ConnectionExists()
3260 !needle->localdev || in ConnectionExists()
3261 strcmp(check->localdev, needle->localdev)) in ConnectionExists()
3265 if((!(needle->handler->flags & PROTOPT_CREDSPERREQUEST)) in ConnectionExists()
3272 if(!strequal(needle->user, check->user) || in ConnectionExists()
3273 !strequal(needle->passwd, check->passwd)) { in ConnectionExists()
3282 if(!needle->bits.httpproxy || needle->handler->flags&PROTOPT_SSL || in ConnectionExists()
3283 (needle->bits.httpproxy && check->bits.httpproxy && in ConnectionExists()
3284 needle->bits.tunnel_proxy && check->bits.tunnel_proxy && in ConnectionExists()
3285 Curl_raw_equal(needle->proxy.name, check->proxy.name) && in ConnectionExists()
3286 (needle->port == check->port))) { in ConnectionExists()
3292 if((Curl_raw_equal(needle->handler->scheme, check->handler->scheme) || in ConnectionExists()
3293 needle->handler->protocol & check->handler->protocol) && in ConnectionExists()
3294 Curl_raw_equal(needle->host.name, check->host.name) && in ConnectionExists()
3295 needle->remote_port == check->remote_port) { in ConnectionExists()
3296 if(needle->handler->flags & PROTOPT_SSL) { in ConnectionExists()
3299 if(!Curl_ssl_config_matches(&needle->ssl_config, in ConnectionExists()
3321 (needle->proxytype == check->proxytype) && in ConnectionExists()
3322 (needle->bits.tunnel_proxy == check->bits.tunnel_proxy) && in ConnectionExists()
3323 Curl_raw_equal(needle->proxy.name, check->proxy.name) && in ConnectionExists()
3324 needle->port == check->port) { in ConnectionExists()