Revert "Imported Upstream version 7.44.0"
[platform/upstream/curl.git] / lib / bundles.h
similarity index 52%
rename from tests/unit/unit1601.c
rename to lib/bundles.h
index 17aba05..3816c40 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef HEADER_CURL_BUNDLES_H
+#define HEADER_CURL_BUNDLES_H
 /***************************************************************************
  *                                  _   _ ____  _
  *  Project                     ___| | | |  _ \| |
@@ -5,7 +7,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2012, Linus Nielsen Feltzing, <linus@haxx.se>
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
  * KIND, either express or implied.
  *
  ***************************************************************************/
-#include "curlcheck.h"
 
-#include "curl_md5.h"
+struct connectbundle {
+  bool server_supports_pipelining; /* TRUE if server supports pipelining,
+                                      set after first response */
+  size_t num_connections;       /* Number of connections in the bundle */
+  struct curl_llist *conn_list; /* The connectdata members of the bundle */
+};
 
-static CURLcode unit_setup(void)
-{
-  return CURLE_OK;
-}
+CURLcode Curl_bundle_create(struct SessionHandle *data,
+                            struct connectbundle **cb_ptr);
 
-static void unit_stop(void)
-{
+void Curl_bundle_destroy(struct connectbundle *cb_ptr);
 
-}
+CURLcode Curl_bundle_add_conn(struct connectbundle *cb_ptr,
+                              struct connectdata *conn);
 
-UNITTEST_START
+int Curl_bundle_remove_conn(struct connectbundle *cb_ptr,
+                            struct connectdata *conn);
 
-  unsigned char output[16];
-  unsigned char *testp = output;
-  Curl_md5it(output, (const unsigned char *)"1");
 
-  verify_memory(testp,
-                "\xc4\xca\x42\x38\xa0\xb9\x23\x82\x0d\xcc\x50\x9a\x6f\x75\x84\x9b", 16);
+#endif /* HEADER_CURL_BUNDLES_H */
 
-  Curl_md5it(output, (const unsigned char *)"hello-you-fool");
-
-  verify_memory(testp,
-                "\x88\x67\x0b\x6d\x5d\x74\x2f\xad\xa5\xcd\xf9\xb6\x82\x87\x5f\x22", 16);
-
-
-UNITTEST_STOP