├── .github └── workflows │ ├── ci.yml │ └── version-check.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── README.md ├── b64 ├── b64.c ├── b64.h ├── urlsafe_b64.c └── urlsafe_b64.h ├── cJSON ├── cJSON.c └── cJSON.h ├── docs ├── Makefile ├── README.gist.md ├── README.md └── gist │ ├── Makefile │ ├── client.c │ └── server.c ├── examples ├── CMakeLists.txt ├── cdn_create_timestamp_url.c ├── cdn_get_bandwidth_data.c ├── cdn_get_flux_data.c ├── cdn_get_log_list.c ├── cdn_prefetch_urls.c ├── cdn_refresh_dirs.c ├── cdn_refresh_urls.c ├── debug.h ├── fop_video_avthumb.c ├── rs_batch_change_mime.c ├── rs_batch_change_type.c ├── rs_batch_copy.c ├── rs_batch_delete.c ├── rs_batch_delete_after_days.c ├── rs_batch_move.c ├── rs_batch_stat.c ├── rs_change_mime.c ├── rs_change_type.c ├── rs_copy.c ├── rs_delete.c ├── rs_delete_after_days.c ├── rs_fetch.c ├── rs_move.c ├── rs_prefetch.c ├── rs_stat.c ├── rsf_list_bucket.c ├── rsf_list_files.c ├── test-env.sh ├── up_chunk_upload.c ├── up_create_uptoken.c ├── up_form_upload.c ├── up_multipart_sample.c └── up_resumeable_upload.c ├── gtests ├── CMakeLists.txt ├── auth_test.cc ├── base_io_test.cc ├── crypto_test.cc ├── equal.c ├── fmt_test.cc ├── fop_test.cc ├── io_put_test.cc ├── multipart_test.cc ├── qiniu_test.cc ├── recorder_key_test.cc ├── recorder_test.cc ├── region_test.cc ├── resources │ ├── test5m.mp3 │ └── test_emptyfile.txt ├── resumable_io_test.cc ├── rfc3339_test.cc ├── rs_ops_test.cc ├── rsf_test.cc ├── seq.c └── test.h ├── hashmap ├── hashmap.c └── hashmap.h ├── qiniu ├── auth_mac.c ├── base.c ├── base.h ├── base_io.c ├── cdn.c ├── cdn.h ├── code.c ├── conf.c ├── conf.h ├── crypto.c ├── emu_posix.c ├── emu_posix.h ├── fop.c ├── fop.h ├── http.c ├── http.h ├── io.c ├── io.h ├── macro.h ├── multipart_upload.c ├── multipart_upload.h ├── private │ ├── code.h │ ├── crypto.h │ └── region.h ├── qetag.c ├── qetag.h ├── reader.c ├── reader.h ├── recorder.c ├── recorder.h ├── recorder_key.c ├── recorder_key.h ├── recorder_utils.c ├── recorder_utils.h ├── region.c ├── region.h ├── resumable_io.c ├── resumable_io.h ├── rfc3339.c ├── rfc3339.h ├── rs.c ├── rs.h ├── rsf.c ├── rsf.h ├── tm.c └── tm.h ├── test-env.sh └── vcpkg.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/version-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/.github/workflows/version-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/README.md -------------------------------------------------------------------------------- /b64/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/b64/b64.c -------------------------------------------------------------------------------- /b64/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/b64/b64.h -------------------------------------------------------------------------------- /b64/urlsafe_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/b64/urlsafe_b64.c -------------------------------------------------------------------------------- /b64/urlsafe_b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/b64/urlsafe_b64.h -------------------------------------------------------------------------------- /cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/cJSON/cJSON.c -------------------------------------------------------------------------------- /cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/cJSON/cJSON.h -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.gist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/README.gist.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/gist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/gist/Makefile -------------------------------------------------------------------------------- /docs/gist/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/gist/client.c -------------------------------------------------------------------------------- /docs/gist/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/docs/gist/server.c -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cdn_create_timestamp_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_create_timestamp_url.c -------------------------------------------------------------------------------- /examples/cdn_get_bandwidth_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_get_bandwidth_data.c -------------------------------------------------------------------------------- /examples/cdn_get_flux_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_get_flux_data.c -------------------------------------------------------------------------------- /examples/cdn_get_log_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_get_log_list.c -------------------------------------------------------------------------------- /examples/cdn_prefetch_urls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_prefetch_urls.c -------------------------------------------------------------------------------- /examples/cdn_refresh_dirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_refresh_dirs.c -------------------------------------------------------------------------------- /examples/cdn_refresh_urls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/cdn_refresh_urls.c -------------------------------------------------------------------------------- /examples/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/debug.h -------------------------------------------------------------------------------- /examples/fop_video_avthumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/fop_video_avthumb.c -------------------------------------------------------------------------------- /examples/rs_batch_change_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_change_mime.c -------------------------------------------------------------------------------- /examples/rs_batch_change_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_change_type.c -------------------------------------------------------------------------------- /examples/rs_batch_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_copy.c -------------------------------------------------------------------------------- /examples/rs_batch_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_delete.c -------------------------------------------------------------------------------- /examples/rs_batch_delete_after_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_delete_after_days.c -------------------------------------------------------------------------------- /examples/rs_batch_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_move.c -------------------------------------------------------------------------------- /examples/rs_batch_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_batch_stat.c -------------------------------------------------------------------------------- /examples/rs_change_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_change_mime.c -------------------------------------------------------------------------------- /examples/rs_change_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_change_type.c -------------------------------------------------------------------------------- /examples/rs_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_copy.c -------------------------------------------------------------------------------- /examples/rs_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_delete.c -------------------------------------------------------------------------------- /examples/rs_delete_after_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_delete_after_days.c -------------------------------------------------------------------------------- /examples/rs_fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_fetch.c -------------------------------------------------------------------------------- /examples/rs_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_move.c -------------------------------------------------------------------------------- /examples/rs_prefetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_prefetch.c -------------------------------------------------------------------------------- /examples/rs_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rs_stat.c -------------------------------------------------------------------------------- /examples/rsf_list_bucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rsf_list_bucket.c -------------------------------------------------------------------------------- /examples/rsf_list_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/rsf_list_files.c -------------------------------------------------------------------------------- /examples/test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/test-env.sh -------------------------------------------------------------------------------- /examples/up_chunk_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/up_chunk_upload.c -------------------------------------------------------------------------------- /examples/up_create_uptoken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/up_create_uptoken.c -------------------------------------------------------------------------------- /examples/up_form_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/up_form_upload.c -------------------------------------------------------------------------------- /examples/up_multipart_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/up_multipart_sample.c -------------------------------------------------------------------------------- /examples/up_resumeable_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/examples/up_resumeable_upload.c -------------------------------------------------------------------------------- /gtests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/CMakeLists.txt -------------------------------------------------------------------------------- /gtests/auth_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/auth_test.cc -------------------------------------------------------------------------------- /gtests/base_io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/base_io_test.cc -------------------------------------------------------------------------------- /gtests/crypto_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/crypto_test.cc -------------------------------------------------------------------------------- /gtests/equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/equal.c -------------------------------------------------------------------------------- /gtests/fmt_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/fmt_test.cc -------------------------------------------------------------------------------- /gtests/fop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/fop_test.cc -------------------------------------------------------------------------------- /gtests/io_put_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/io_put_test.cc -------------------------------------------------------------------------------- /gtests/multipart_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/multipart_test.cc -------------------------------------------------------------------------------- /gtests/qiniu_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/qiniu_test.cc -------------------------------------------------------------------------------- /gtests/recorder_key_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/recorder_key_test.cc -------------------------------------------------------------------------------- /gtests/recorder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/recorder_test.cc -------------------------------------------------------------------------------- /gtests/region_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/region_test.cc -------------------------------------------------------------------------------- /gtests/resources/test5m.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/resources/test5m.mp3 -------------------------------------------------------------------------------- /gtests/resources/test_emptyfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gtests/resumable_io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/resumable_io_test.cc -------------------------------------------------------------------------------- /gtests/rfc3339_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/rfc3339_test.cc -------------------------------------------------------------------------------- /gtests/rs_ops_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/rs_ops_test.cc -------------------------------------------------------------------------------- /gtests/rsf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/rsf_test.cc -------------------------------------------------------------------------------- /gtests/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/seq.c -------------------------------------------------------------------------------- /gtests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/gtests/test.h -------------------------------------------------------------------------------- /hashmap/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/hashmap/hashmap.c -------------------------------------------------------------------------------- /hashmap/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/hashmap/hashmap.h -------------------------------------------------------------------------------- /qiniu/auth_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/auth_mac.c -------------------------------------------------------------------------------- /qiniu/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/base.c -------------------------------------------------------------------------------- /qiniu/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/base.h -------------------------------------------------------------------------------- /qiniu/base_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/base_io.c -------------------------------------------------------------------------------- /qiniu/cdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/cdn.c -------------------------------------------------------------------------------- /qiniu/cdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/cdn.h -------------------------------------------------------------------------------- /qiniu/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/code.c -------------------------------------------------------------------------------- /qiniu/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/conf.c -------------------------------------------------------------------------------- /qiniu/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/conf.h -------------------------------------------------------------------------------- /qiniu/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/crypto.c -------------------------------------------------------------------------------- /qiniu/emu_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/emu_posix.c -------------------------------------------------------------------------------- /qiniu/emu_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/emu_posix.h -------------------------------------------------------------------------------- /qiniu/fop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/fop.c -------------------------------------------------------------------------------- /qiniu/fop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/fop.h -------------------------------------------------------------------------------- /qiniu/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/http.c -------------------------------------------------------------------------------- /qiniu/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/http.h -------------------------------------------------------------------------------- /qiniu/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/io.c -------------------------------------------------------------------------------- /qiniu/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/io.h -------------------------------------------------------------------------------- /qiniu/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/macro.h -------------------------------------------------------------------------------- /qiniu/multipart_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/multipart_upload.c -------------------------------------------------------------------------------- /qiniu/multipart_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/multipart_upload.h -------------------------------------------------------------------------------- /qiniu/private/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/private/code.h -------------------------------------------------------------------------------- /qiniu/private/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/private/crypto.h -------------------------------------------------------------------------------- /qiniu/private/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/private/region.h -------------------------------------------------------------------------------- /qiniu/qetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/qetag.c -------------------------------------------------------------------------------- /qiniu/qetag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/qetag.h -------------------------------------------------------------------------------- /qiniu/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/reader.c -------------------------------------------------------------------------------- /qiniu/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/reader.h -------------------------------------------------------------------------------- /qiniu/recorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder.c -------------------------------------------------------------------------------- /qiniu/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder.h -------------------------------------------------------------------------------- /qiniu/recorder_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder_key.c -------------------------------------------------------------------------------- /qiniu/recorder_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder_key.h -------------------------------------------------------------------------------- /qiniu/recorder_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder_utils.c -------------------------------------------------------------------------------- /qiniu/recorder_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/recorder_utils.h -------------------------------------------------------------------------------- /qiniu/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/region.c -------------------------------------------------------------------------------- /qiniu/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/region.h -------------------------------------------------------------------------------- /qiniu/resumable_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/resumable_io.c -------------------------------------------------------------------------------- /qiniu/resumable_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/resumable_io.h -------------------------------------------------------------------------------- /qiniu/rfc3339.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rfc3339.c -------------------------------------------------------------------------------- /qiniu/rfc3339.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rfc3339.h -------------------------------------------------------------------------------- /qiniu/rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rs.c -------------------------------------------------------------------------------- /qiniu/rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rs.h -------------------------------------------------------------------------------- /qiniu/rsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rsf.c -------------------------------------------------------------------------------- /qiniu/rsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/rsf.h -------------------------------------------------------------------------------- /qiniu/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/tm.c -------------------------------------------------------------------------------- /qiniu/tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/qiniu/tm.h -------------------------------------------------------------------------------- /test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/test-env.sh -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/c-sdk/HEAD/vcpkg.json --------------------------------------------------------------------------------