]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
pipelining: Remove dead code.
authorLinus Nielsen Feltzing <linus@haxx.se>
Thu, 14 Mar 2013 12:30:59 +0000 (13:30 +0100)
committerLinus Nielsen Feltzing <linus@haxx.se>
Thu, 14 Mar 2013 12:30:59 +0000 (13:30 +0100)
lib/pipeline.c
lib/pipeline.h

index 7abc35fd0609ee5bce5643b1b8ffa0accbc27c63..624fc4257b6906079732853da78f12afceac1476 100644 (file)
@@ -92,41 +92,6 @@ bool Curl_pipeline_penalized(struct SessionHandle *data,
   return FALSE;
 }
 
-/* Find the best connection in a bundle to use for the next request */
-struct connectdata *
-Curl_bundle_find_best(struct SessionHandle *data,
-                      struct connectbundle *cb_ptr)
-{
-  struct curl_llist_element *curr;
-  struct connectdata *conn;
-  struct connectdata *best_conn = NULL;
-  size_t pipe_len;
-  size_t best_pipe_len = 99;
-
-  (void)data;
-
-  curr = cb_ptr->conn_list->head;
-  while(curr) {
-    conn = curr->ptr;
-    pipe_len = conn->send_pipe->size + conn->recv_pipe->size;
-
-    if(!Curl_pipeline_penalized(conn->data, conn) &&
-       pipe_len < best_pipe_len) {
-      best_conn = conn;
-      best_pipe_len = pipe_len;
-    }
-    curr = curr->next;
-  }
-
-  /* If we haven't found a connection, i.e all pipelines are penalized
-     or full, just pick one. The request will then be queued in
-     Curl_add_handle_to_pipeline(). */
-  if(!best_conn) {
-    best_conn = cb_ptr->conn_list->head->ptr;
-  }
-  return best_conn;
-}
-
 CURLcode Curl_add_handle_to_pipeline(struct SessionHandle *handle,
                                      struct connectdata *conn)
 {
index f3a734c9a491c3cbb8960b69541e17e4ef28aa14..1df9589535471f8a4d8b3a40d9e005a59aec3c8e 100644 (file)
  *
  ***************************************************************************/
 
-struct connectdata *
-Curl_bundle_find_best(struct SessionHandle *data,
-                      struct connectbundle *cb_ptr);
-
 CURLcode Curl_add_handle_to_pipeline(struct SessionHandle *handle,
                                      struct connectdata *conn);
 void Curl_move_handle_from_send_to_recv_pipe(struct SessionHandle *handle,