summaryrefslogtreecommitdiff
path: root/example/single_thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/single_thread.cpp')
-rw-r--r--example/single_thread.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/example/single_thread.cpp b/example/single_thread.cpp
new file mode 100644
index 00000000..71ddc4d5
--- /dev/null
+++ b/example/single_thread.cpp
@@ -0,0 +1,25 @@
+/*************************************************************************
+ > File Name: single_thread.cpp
+ > Author: pxz
+ > Created Time: Fri 11 Sep 2020 09:52:05 AM CST
+ ************************************************************************/
+#include<stdio.h>
+#include"../src/hos_client.h"
+
+int main(int argc, char *argv[])
+{
+ hos_client_handle handle = hos_client_init("192.168.44.12:9098/hos", "default", "defalut");
+ if (handle == NULL)
+ {
+ printf("error:hos_client_handle\n");
+ return -1;
+ }
+
+ hos_create_bucket(handle, "my-first-bucket");
+
+ hos_upload_async(handle, "my-first-bucket", "my-file.txt");
+
+ hos_client_close(handle);
+
+ return 0;
+}