├── .code.yml ├── .github └── workflows │ └── auto-changelog.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── cos-cpp-sdk.md ├── demo ├── CMakeLists.txt ├── bucket_op_demo │ ├── delete_bucket_demo.cpp │ ├── get_bucket_list_demo.cpp │ ├── head_bucket_demo.cpp │ └── put_bucket_demo.cpp ├── config.json ├── cos_demo.cpp ├── object_op_demo │ ├── copy_move_object_demo.cpp │ ├── delete_object_demo.cpp │ ├── get_object_demo.cpp │ ├── get_object_url_demo.cpp │ ├── head_object_demo.cpp │ ├── multi_get_object_demo.cpp │ ├── multi_put_object_demo.cpp │ ├── put_get_delete_object_tagging_demo.cpp │ ├── put_get_object_acl_demo.cpp │ ├── put_object_demo.cpp │ ├── restore_object_demo.cpp │ └── select_objec_demo.cpp ├── stable_test.cpp └── test_file │ ├── audio.mp3 │ ├── document.docx │ ├── douyin-00000.ts │ ├── douyin.m3u8 │ ├── test.jpg │ ├── test.srt │ ├── test.zip │ ├── text.txt │ └── video.mp4 ├── gen_lcov.sh ├── include ├── cos_api.h ├── cos_config.h ├── cos_defines.h ├── cos_params.h ├── cos_sys_config.h ├── op │ ├── base_op.h │ ├── bucket_op.h │ ├── cos_result.h │ ├── file_copy_task.h │ ├── file_download_task.h │ ├── file_upload_task.h │ ├── object_op.h │ └── service_op.h ├── rapidxml │ └── 1.13 │ │ ├── license.txt │ │ ├── rapidxml.hpp │ │ ├── rapidxml_iterators.hpp │ │ ├── rapidxml_print.hpp │ │ └── rapidxml_utils.hpp ├── request │ ├── auditing_req.h │ ├── base_req.h │ ├── bucket_req.h │ ├── data_process_req.h │ ├── object_req.h │ └── service_req.h ├── response │ ├── auditing_resp.h │ ├── base_resp.h │ ├── bucket_resp.h │ ├── data_process_resp.h │ ├── object_resp.h │ └── service_resp.h ├── trsf │ ├── async_context.h │ ├── async_task.h │ └── transfer_handler.h └── util │ ├── auth_tool.h │ ├── base_op_util.h │ ├── codec_util.h │ ├── crc64.h │ ├── file_util.h │ ├── http_sender.h │ ├── illegal_intercept.h │ ├── log_util.h │ ├── lru_cache.h │ ├── noncopyable.h │ ├── sha1.h │ ├── simple_dns_cache.h │ ├── string_util.h │ └── test_utils.h ├── install-libpoco.sh ├── libs ├── Win32 │ └── .gitkeep ├── linux │ └── .gitkeep ├── macOS │ └── .gitkeep └── x64 │ └── .gitkeep ├── src ├── CMakeLists.txt ├── cos_api.cpp ├── cos_config.cpp ├── cos_sys_config.cpp ├── op │ ├── base_op.cpp │ ├── bucket_op.cpp │ ├── cos_result.cpp │ ├── file_copy_task.cpp │ ├── file_download_task.cpp │ ├── file_upload_task.cpp │ ├── object_op.cpp │ └── service_op.cpp ├── request │ ├── auditing_req.cpp │ ├── base_req.cpp │ ├── bucket_req.cpp │ ├── data_process_req.cpp │ └── object_req.cpp ├── response │ ├── auditing_resp.cpp │ ├── base_resp.cpp │ ├── bucket_resp.cpp │ ├── data_process_resp.cpp │ ├── object_resp.cpp │ └── service_resp.cpp ├── trsf │ └── transfer_handler.cpp └── util │ ├── auth_tool.cpp │ ├── base_op_util.cpp │ ├── codec_util.cpp │ ├── crc64.cpp │ ├── file_util.cpp │ ├── http_sender.cpp │ ├── illegal_intercept.cpp │ ├── log_util.cpp │ ├── sha1.cpp │ ├── simple_dns_cache.cpp │ ├── string_util.cpp │ └── test_utils.cpp ├── third_party ├── include │ ├── Poco │ │ ├── AbstractCache.h │ │ ├── AbstractDelegate.h │ │ ├── AbstractEvent.h │ │ ├── AbstractObserver.h │ │ ├── AbstractPriorityDelegate.h │ │ ├── AbstractStrategy.h │ │ ├── AccessExpirationDecorator.h │ │ ├── AccessExpireCache.h │ │ ├── AccessExpireLRUCache.h │ │ ├── AccessExpireStrategy.h │ │ ├── ActiveDispatcher.h │ │ ├── ActiveMethod.h │ │ ├── ActiveResult.h │ │ ├── ActiveRunnable.h │ │ ├── ActiveStarter.h │ │ ├── Activity.h │ │ ├── Alignment.h │ │ ├── Any.h │ │ ├── Ascii.h │ │ ├── AsyncChannel.h │ │ ├── AtomicCounter.h │ │ ├── AutoPtr.h │ │ ├── AutoReleasePool.h │ │ ├── BasicEvent.h │ │ ├── Buffer.h │ │ ├── BufferAllocator.h │ │ ├── BufferedBidirectionalStreamBuf.h │ │ ├── BufferedStreamBuf.h │ │ ├── Bugcheck.h │ │ ├── Checksum.h │ │ ├── Config.h │ │ ├── Crypto │ │ │ ├── Cipher.h │ │ │ ├── CipherFactory.h │ │ │ ├── CipherImpl.h │ │ │ ├── CipherKey.h │ │ │ ├── CipherKeyImpl.h │ │ │ ├── Crypto.h │ │ │ ├── CryptoException.h │ │ │ ├── CryptoStream.h │ │ │ ├── CryptoTransform.h │ │ │ ├── DigestEngine.h │ │ │ ├── ECDSADigestEngine.h │ │ │ ├── ECKey.h │ │ │ ├── ECKeyImpl.h │ │ │ ├── EVPPKey.h │ │ │ ├── KeyPair.h │ │ │ ├── KeyPairImpl.h │ │ │ ├── OpenSSLInitializer.h │ │ │ ├── PKCS12Container.h │ │ │ ├── RSACipherImpl.h │ │ │ ├── RSADigestEngine.h │ │ │ ├── RSAKey.h │ │ │ ├── RSAKeyImpl.h │ │ │ └── X509Certificate.h │ │ ├── Data │ │ │ ├── AbstractBinder.h │ │ │ ├── AbstractBinding.h │ │ │ ├── AbstractExtraction.h │ │ │ ├── AbstractExtractor.h │ │ │ ├── AbstractPreparation.h │ │ │ ├── AbstractPreparator.h │ │ │ ├── AbstractSessionImpl.h │ │ │ ├── ArchiveStrategy.h │ │ │ ├── AutoTransaction.h │ │ │ ├── Binding.h │ │ │ ├── Bulk.h │ │ │ ├── BulkBinding.h │ │ │ ├── BulkExtraction.h │ │ │ ├── Column.h │ │ │ ├── Connector.h │ │ │ ├── Constants.h │ │ │ ├── Data.h │ │ │ ├── DataException.h │ │ │ ├── Date.h │ │ │ ├── DynamicDateTime.h │ │ │ ├── DynamicLOB.h │ │ │ ├── Extraction.h │ │ │ ├── LOB.h │ │ │ ├── LOBStream.h │ │ │ ├── Limit.h │ │ │ ├── MetaColumn.h │ │ │ ├── PooledSessionHolder.h │ │ │ ├── PooledSessionImpl.h │ │ │ ├── Position.h │ │ │ ├── Preparation.h │ │ │ ├── Range.h │ │ │ ├── RecordSet.h │ │ │ ├── Row.h │ │ │ ├── RowFilter.h │ │ │ ├── RowFormatter.h │ │ │ ├── RowIterator.h │ │ │ ├── SQLChannel.h │ │ │ ├── SQLite │ │ │ │ ├── Binder.h │ │ │ │ ├── Connector.h │ │ │ │ ├── Extractor.h │ │ │ │ ├── Notifier.h │ │ │ │ ├── SQLite.h │ │ │ │ ├── SQLiteException.h │ │ │ │ ├── SQLiteStatementImpl.h │ │ │ │ ├── SessionImpl.h │ │ │ │ └── Utility.h │ │ │ ├── Session.h │ │ │ ├── SessionFactory.h │ │ │ ├── SessionImpl.h │ │ │ ├── SessionPool.h │ │ │ ├── SessionPoolContainer.h │ │ │ ├── SimpleRowFormatter.h │ │ │ ├── Statement.h │ │ │ ├── StatementCreator.h │ │ │ ├── StatementImpl.h │ │ │ ├── Time.h │ │ │ ├── Transaction.h │ │ │ └── TypeHandler.h │ │ ├── DataURIStream.h │ │ ├── DataURIStreamFactory.h │ │ ├── DateTime.h │ │ ├── DateTimeFormat.h │ │ ├── DateTimeFormatter.h │ │ ├── DateTimeParser.h │ │ ├── Debugger.h │ │ ├── DefaultStrategy.h │ │ ├── DeflatingStream.h │ │ ├── Delegate.h │ │ ├── DigestEngine.h │ │ ├── DigestStream.h │ │ ├── DirectoryIterator.h │ │ ├── DirectoryIteratorStrategy.h │ │ ├── DirectoryIterator_UNIX.h │ │ ├── DirectoryIterator_WIN32.h │ │ ├── DirectoryIterator_WIN32U.h │ │ ├── Dynamic │ │ │ ├── Pair.h │ │ │ ├── Struct.h │ │ │ ├── Var.h │ │ │ ├── VarHolder.h │ │ │ └── VarIterator.h │ │ ├── Event.h │ │ ├── EventArgs.h │ │ ├── EventChannel.h │ │ ├── EventLogChannel.h │ │ ├── Event_POSIX.h │ │ ├── Event_VX.h │ │ ├── Event_WIN32.h │ │ ├── Exception.h │ │ ├── FIFOBuffer.h │ │ ├── FIFOBufferStream.h │ │ ├── FIFOEvent.h │ │ ├── FIFOStrategy.h │ │ ├── FPEnvironment.h │ │ ├── FPEnvironment_C99.h │ │ ├── FPEnvironment_DEC.h │ │ ├── FPEnvironment_DUMMY.h │ │ ├── FPEnvironment_QNX.h │ │ ├── FPEnvironment_SUN.h │ │ ├── FPEnvironment_WIN32.h │ │ ├── File.h │ │ ├── FileChannel.h │ │ ├── FileStream.h │ │ ├── FileStreamFactory.h │ │ ├── FileStream_POSIX.h │ │ ├── FileStream_WIN32.h │ │ ├── File_UNIX.h │ │ ├── File_VX.h │ │ ├── File_WIN32.h │ │ ├── File_WIN32U.h │ │ ├── File_WINCE.h │ │ ├── Format.h │ │ ├── Foundation.h │ │ ├── HMACEngine.h │ │ ├── JSON │ │ │ ├── Array.h │ │ │ ├── Handler.h │ │ │ ├── JSON.h │ │ │ ├── JSONException.h │ │ │ ├── Object.h │ │ │ ├── ParseHandler.h │ │ │ ├── Parser.h │ │ │ ├── ParserImpl.h │ │ │ ├── PrintHandler.h │ │ │ ├── Query.h │ │ │ ├── Stringifier.h │ │ │ ├── Template.h │ │ │ └── TemplateCache.h │ │ ├── JSONString.h │ │ ├── ListMap.h │ │ ├── LocalDateTime.h │ │ ├── MD4Engine.h │ │ ├── MD5Engine.h │ │ ├── MetaObject.h │ │ ├── MetaProgramming.h │ │ ├── Mutex.h │ │ ├── Mutex_POSIX.h │ │ ├── Mutex_WIN32.h │ │ ├── Mutex_WINCE.h │ │ ├── Net │ │ │ ├── AbstractHTTPRequestHandler.h │ │ │ ├── AcceptCertificateHandler.h │ │ │ ├── CertificateHandlerFactory.h │ │ │ ├── CertificateHandlerFactoryMgr.h │ │ │ ├── ConsoleCertificateHandler.h │ │ │ ├── Context.h │ │ │ ├── DNS.h │ │ │ ├── DatagramSocket.h │ │ │ ├── DatagramSocketImpl.h │ │ │ ├── DialogSocket.h │ │ │ ├── EscapeHTMLStream.h │ │ │ ├── FTPClientSession.h │ │ │ ├── FTPSClientSession.h │ │ │ ├── FTPSStreamFactory.h │ │ │ ├── FTPStreamFactory.h │ │ │ ├── FilePartSource.h │ │ │ ├── HTMLForm.h │ │ │ ├── HTTPAuthenticationParams.h │ │ │ ├── HTTPBasicCredentials.h │ │ │ ├── HTTPBasicStreamBuf.h │ │ │ ├── HTTPBufferAllocator.h │ │ │ ├── HTTPChunkedStream.h │ │ │ ├── HTTPClientSession.h │ │ │ ├── HTTPCookie.h │ │ │ ├── HTTPCredentials.h │ │ │ ├── HTTPDigestCredentials.h │ │ │ ├── HTTPFixedLengthStream.h │ │ │ ├── HTTPHeaderStream.h │ │ │ ├── HTTPIOStream.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPNTLMCredentials.h │ │ │ ├── HTTPRequest.h │ │ │ ├── HTTPRequestHandler.h │ │ │ ├── HTTPRequestHandlerFactory.h │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPSClientSession.h │ │ │ ├── HTTPSSessionInstantiator.h │ │ │ ├── HTTPSStreamFactory.h │ │ │ ├── HTTPServer.h │ │ │ ├── HTTPServerConnection.h │ │ │ ├── HTTPServerConnectionFactory.h │ │ │ ├── HTTPServerParams.h │ │ │ ├── HTTPServerRequest.h │ │ │ ├── HTTPServerRequestImpl.h │ │ │ ├── HTTPServerResponse.h │ │ │ ├── HTTPServerResponseImpl.h │ │ │ ├── HTTPServerSession.h │ │ │ ├── HTTPSession.h │ │ │ ├── HTTPSessionFactory.h │ │ │ ├── HTTPSessionInstantiator.h │ │ │ ├── HTTPStream.h │ │ │ ├── HTTPStreamFactory.h │ │ │ ├── HostEntry.h │ │ │ ├── ICMPClient.h │ │ │ ├── ICMPEventArgs.h │ │ │ ├── ICMPPacket.h │ │ │ ├── ICMPPacketImpl.h │ │ │ ├── ICMPSocket.h │ │ │ ├── ICMPSocketImpl.h │ │ │ ├── ICMPv4PacketImpl.h │ │ │ ├── IPAddress.h │ │ │ ├── IPAddressImpl.h │ │ │ ├── InvalidCertificateHandler.h │ │ │ ├── KeyConsoleHandler.h │ │ │ ├── KeyFileHandler.h │ │ │ ├── MailMessage.h │ │ │ ├── MailRecipient.h │ │ │ ├── MailStream.h │ │ │ ├── MediaType.h │ │ │ ├── MessageHeader.h │ │ │ ├── MultiSocketPoller.h │ │ │ ├── MulticastSocket.h │ │ │ ├── MultipartReader.h │ │ │ ├── MultipartWriter.h │ │ │ ├── NTLMCredentials.h │ │ │ ├── NTPClient.h │ │ │ ├── NTPEventArgs.h │ │ │ ├── NTPPacket.h │ │ │ ├── NameValueCollection.h │ │ │ ├── Net.h │ │ │ ├── NetException.h │ │ │ ├── NetSSL.h │ │ │ ├── NetworkInterface.h │ │ │ ├── NullPartHandler.h │ │ │ ├── OAuth10Credentials.h │ │ │ ├── OAuth20Credentials.h │ │ │ ├── POP3ClientSession.h │ │ │ ├── ParallelSocketAcceptor.h │ │ │ ├── ParallelSocketReactor.h │ │ │ ├── PartHandler.h │ │ │ ├── PartSource.h │ │ │ ├── PartStore.h │ │ │ ├── PollSet.h │ │ │ ├── PrivateKeyFactory.h │ │ │ ├── PrivateKeyFactoryMgr.h │ │ │ ├── PrivateKeyPassphraseHandler.h │ │ │ ├── QuotedPrintableDecoder.h │ │ │ ├── QuotedPrintableEncoder.h │ │ │ ├── RawSocket.h │ │ │ ├── RawSocketImpl.h │ │ │ ├── RejectCertificateHandler.h │ │ │ ├── RemoteSyslogChannel.h │ │ │ ├── RemoteSyslogListener.h │ │ │ ├── SMTPChannel.h │ │ │ ├── SMTPClientSession.h │ │ │ ├── SSLException.h │ │ │ ├── SSLManager.h │ │ │ ├── SSPINTLMCredentials.h │ │ │ ├── SecureSMTPClientSession.h │ │ │ ├── SecureServerSocket.h │ │ │ ├── SecureServerSocketImpl.h │ │ │ ├── SecureSocketImpl.h │ │ │ ├── SecureStreamSocket.h │ │ │ ├── SecureStreamSocketImpl.h │ │ │ ├── ServerSocket.h │ │ │ ├── ServerSocketImpl.h │ │ │ ├── Session.h │ │ │ ├── SingleSocketPoller.h │ │ │ ├── Socket.h │ │ │ ├── SocketAcceptor.h │ │ │ ├── SocketAddress.h │ │ │ ├── SocketAddressImpl.h │ │ │ ├── SocketConnector.h │ │ │ ├── SocketDefs.h │ │ │ ├── SocketImpl.h │ │ │ ├── SocketNotification.h │ │ │ ├── SocketNotifier.h │ │ │ ├── SocketReactor.h │ │ │ ├── SocketStream.h │ │ │ ├── StreamSocket.h │ │ │ ├── StreamSocketImpl.h │ │ │ ├── StringPartSource.h │ │ │ ├── TCPServer.h │ │ │ ├── TCPServerConnection.h │ │ │ ├── TCPServerConnectionFactory.h │ │ │ ├── TCPServerDispatcher.h │ │ │ ├── TCPServerParams.h │ │ │ ├── UDPClient.h │ │ │ ├── UDPHandler.h │ │ │ ├── UDPServer.h │ │ │ ├── UDPServerParams.h │ │ │ ├── UDPSocketReader.h │ │ │ ├── Utility.h │ │ │ ├── VerificationErrorArgs.h │ │ │ ├── WebSocket.h │ │ │ ├── WebSocketImpl.h │ │ │ └── X509Certificate.h │ │ ├── Notification.h │ │ ├── NotificationCenter.h │ │ ├── NotificationQueue.h │ │ ├── NotificationStrategy.h │ │ ├── NullChannel.h │ │ ├── NullStream.h │ │ ├── Nullable.h │ │ ├── NumberFormatter.h │ │ ├── NumberParser.h │ │ ├── NumericString.h │ │ ├── Path.h │ │ ├── Path_UNIX.h │ │ ├── Path_WIN32.h │ │ ├── Path_WIN32U.h │ │ ├── Path_WINCE.h │ │ ├── PatternFormatter.h │ │ ├── Platform.h │ │ ├── Platform_POSIX.h │ │ ├── Platform_VX.h │ │ ├── Platform_WIN32.h │ │ ├── RecursiveDirectoryIterator.h │ │ ├── RecursiveDirectoryIteratorImpl.h │ │ ├── RefCountedObject.h │ │ ├── Runnable.h │ │ ├── RunnableAdapter.h │ │ ├── SHA1Engine.h │ │ ├── ScopedLock.h │ │ ├── SharedPtr.h │ │ ├── SignalHandler.h │ │ ├── SimpleFileChannel.h │ │ ├── SimpleHashTable.h │ │ ├── SingletonHolder.h │ │ ├── SortedDirectoryIterator.h │ │ ├── StrategyCollection.h │ │ ├── StreamChannel.h │ │ ├── StreamConverter.h │ │ ├── StreamCopier.h │ │ ├── StreamTokenizer.h │ │ ├── StreamUtil.h │ │ ├── String.h │ │ ├── StringTokenizer.h │ │ ├── Task.h │ │ ├── TaskManager.h │ │ ├── TaskNotification.h │ │ ├── TextEncoding.h │ │ ├── Thread.h │ │ ├── ThreadLocal.h │ │ ├── ThreadPool.h │ │ ├── ThreadTarget.h │ │ ├── Thread_POSIX.h │ │ ├── Thread_VX.h │ │ ├── Thread_WIN32.h │ │ ├── Thread_WINCE.h │ │ ├── Timespan.h │ │ ├── Timestamp.h │ │ ├── TypeList.h │ │ ├── Types.h │ │ ├── URI.h │ │ ├── URIStreamFactory.h │ │ ├── URIStreamOpener.h │ │ ├── UTF16Encoding.h │ │ ├── UTF32Encoding.h │ │ ├── UTF8Encoding.h │ │ ├── UTF8String.h │ │ ├── UTFString.h │ │ ├── UnWindows.h │ │ ├── Unicode.h │ │ ├── UnicodeConverter.h │ │ ├── UniqueAccessExpireCache.h │ │ ├── UniqueAccessExpireLRUCache.h │ │ ├── UniqueAccessExpireStrategy.h │ │ ├── UniqueExpireCache.h │ │ ├── UniqueExpireLRUCache.h │ │ ├── UniqueExpireStrategy.h │ │ └── Util │ │ │ ├── AbstractConfiguration.h │ │ │ ├── Application.h │ │ │ ├── ConfigurationMapper.h │ │ │ ├── ConfigurationView.h │ │ │ ├── FilesystemConfiguration.h │ │ │ ├── HelpFormatter.h │ │ │ ├── IniFileConfiguration.h │ │ │ ├── IntValidator.h │ │ │ ├── JSONConfiguration.h │ │ │ ├── LayeredConfiguration.h │ │ │ ├── LoggingConfigurator.h │ │ │ ├── LoggingSubsystem.h │ │ │ ├── MapConfiguration.h │ │ │ ├── Option.h │ │ │ ├── OptionCallback.h │ │ │ ├── OptionException.h │ │ │ ├── OptionProcessor.h │ │ │ ├── OptionSet.h │ │ │ ├── PropertyFileConfiguration.h │ │ │ ├── RegExpValidator.h │ │ │ ├── ServerApplication.h │ │ │ ├── Subsystem.h │ │ │ ├── SystemConfiguration.h │ │ │ ├── Timer.h │ │ │ ├── TimerTask.h │ │ │ ├── TimerTaskAdapter.h │ │ │ ├── Units.h │ │ │ ├── Util.h │ │ │ ├── Validator.h │ │ │ ├── WinRegistryConfiguration.h │ │ │ ├── WinRegistryKey.h │ │ │ ├── WinService.h │ │ │ └── XMLConfiguration.h │ ├── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── applink.c │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h └── lib │ ├── Android │ ├── aarch64 │ │ ├── openssl │ │ │ └── .gitkeep │ │ └── poco │ │ │ └── .gitkeep │ └── armv7-a │ │ ├── openssl │ │ └── .gitkeep │ │ └── poco │ │ └── .gitkeep │ ├── Win32 │ ├── gtest │ │ ├── gtest.lib │ │ └── gtest_main.lib │ ├── openssl │ │ ├── libcrypto-1_1.dll │ │ ├── libcrypto.lib │ │ ├── libssl-1_1.dll │ │ ├── libssl.lib │ │ └── openssl.lib │ └── poco │ │ ├── PocoCrypto.dll │ │ ├── PocoCrypto.lib │ │ ├── PocoData.dll │ │ ├── PocoDataODBC.dll │ │ ├── PocoDataSQLite.dll │ │ ├── PocoEncodings.dll │ │ ├── PocoFoundation.dll │ │ ├── PocoFoundation.lib │ │ ├── PocoJSON.dll │ │ ├── PocoJSON.lib │ │ ├── PocoMongoDB.dll │ │ ├── PocoNet.dll │ │ ├── PocoNet.lib │ │ ├── PocoNetSSL.dll │ │ ├── PocoNetSSL.lib │ │ ├── PocoRedis.dll │ │ ├── PocoUtil.dll │ │ ├── PocoUtil.lib │ │ ├── PocoXML.dll │ │ └── PocoXML.lib │ ├── iOS │ └── aarch64 │ │ ├── openssl │ │ └── .gitkeep │ │ └── poco │ │ └── .gitkeep │ ├── linux │ ├── gtest │ │ ├── libgtest.a │ │ └── libgtest_main.a │ └── poco │ │ ├── libPocoCrypto.so │ │ ├── libPocoFoundation.so │ │ ├── libPocoJSON.so │ │ ├── libPocoNet.so │ │ ├── libPocoNetSSL.so │ │ ├── libPocoUtil.so │ │ └── libPocoXML.so │ ├── macOS │ └── poco │ │ ├── libPocoCrypto.64.dylib │ │ ├── libPocoCrypto.dylib │ │ ├── libPocoFoundation.64.dylib │ │ ├── libPocoFoundation.dylib │ │ ├── libPocoJSON.64.dylib │ │ ├── libPocoJSON.dylib │ │ ├── libPocoNet.64.dylib │ │ ├── libPocoNet.dylib │ │ ├── libPocoNetSSL.64.dylib │ │ ├── libPocoNetSSL.dylib │ │ ├── libPocoUtil.64.dylib │ │ ├── libPocoUtil.dylib │ │ ├── libPocoXML.64.dylib │ │ └── libPocoXML.dylib │ └── x64 │ ├── gtest │ ├── gtest.lib │ └── gtest_main.lib │ ├── openssl │ ├── libcrypto-1_1-x64.dll │ ├── libcrypto.lib │ ├── libssl-1_1-x64.dll │ ├── libssl.lib │ └── openssl.lib │ └── poco │ ├── PocoCrypto.dll │ ├── PocoCrypto.lib │ ├── PocoFoundation.dll │ ├── PocoFoundation.lib │ ├── PocoJSON.dll │ ├── PocoJSON.lib │ ├── PocoNet.dll │ ├── PocoNet.lib │ ├── PocoNetSSL.dll │ ├── PocoNetSSL.lib │ ├── PocoUtil.dll │ ├── PocoUtil.lib │ ├── PocoXML.dll │ └── PocoXML.lib ├── tools └── cos-speed-test │ ├── Readme.txt │ ├── config.json │ ├── cos-speed-test │ ├── cos-speed-test.exe │ └── cos-speed-test.go └── unittest ├── CMakeLists.txt ├── conf ├── config.json └── merge_xml_results.py └── src ├── async_op_test.cpp ├── auditing_req_test.cpp ├── bucket_op_test.cpp ├── bucket_response_test.cpp ├── live_channel_test.cpp ├── mock_server.h ├── object_op_retry_test.cpp ├── object_op_test.cpp ├── object_request_test.cpp ├── object_response_test.cpp └── util_test.cpp /.code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/.code.yml -------------------------------------------------------------------------------- /.github/workflows/auto-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/.github/workflows/auto-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/README.md -------------------------------------------------------------------------------- /cos-cpp-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/cos-cpp-sdk.md -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/bucket_op_demo/delete_bucket_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/bucket_op_demo/delete_bucket_demo.cpp -------------------------------------------------------------------------------- /demo/bucket_op_demo/get_bucket_list_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/bucket_op_demo/get_bucket_list_demo.cpp -------------------------------------------------------------------------------- /demo/bucket_op_demo/head_bucket_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/bucket_op_demo/head_bucket_demo.cpp -------------------------------------------------------------------------------- /demo/bucket_op_demo/put_bucket_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/bucket_op_demo/put_bucket_demo.cpp -------------------------------------------------------------------------------- /demo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/config.json -------------------------------------------------------------------------------- /demo/cos_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/cos_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/copy_move_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/copy_move_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/delete_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/delete_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/get_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/get_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/get_object_url_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/get_object_url_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/head_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/head_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/multi_get_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/multi_get_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/multi_put_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/multi_put_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/put_get_delete_object_tagging_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/put_get_delete_object_tagging_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/put_get_object_acl_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/put_get_object_acl_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/put_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/put_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/restore_object_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/restore_object_demo.cpp -------------------------------------------------------------------------------- /demo/object_op_demo/select_objec_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/object_op_demo/select_objec_demo.cpp -------------------------------------------------------------------------------- /demo/stable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/stable_test.cpp -------------------------------------------------------------------------------- /demo/test_file/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/audio.mp3 -------------------------------------------------------------------------------- /demo/test_file/document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/document.docx -------------------------------------------------------------------------------- /demo/test_file/douyin-00000.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/douyin-00000.ts -------------------------------------------------------------------------------- /demo/test_file/douyin.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/douyin.m3u8 -------------------------------------------------------------------------------- /demo/test_file/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/test.jpg -------------------------------------------------------------------------------- /demo/test_file/test.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/test.srt -------------------------------------------------------------------------------- /demo/test_file/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/test.zip -------------------------------------------------------------------------------- /demo/test_file/text.txt: -------------------------------------------------------------------------------- 1 | texttest -------------------------------------------------------------------------------- /demo/test_file/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/demo/test_file/video.mp4 -------------------------------------------------------------------------------- /gen_lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/gen_lcov.sh -------------------------------------------------------------------------------- /include/cos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/cos_api.h -------------------------------------------------------------------------------- /include/cos_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/cos_config.h -------------------------------------------------------------------------------- /include/cos_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/cos_defines.h -------------------------------------------------------------------------------- /include/cos_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/cos_params.h -------------------------------------------------------------------------------- /include/cos_sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/cos_sys_config.h -------------------------------------------------------------------------------- /include/op/base_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/base_op.h -------------------------------------------------------------------------------- /include/op/bucket_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/bucket_op.h -------------------------------------------------------------------------------- /include/op/cos_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/cos_result.h -------------------------------------------------------------------------------- /include/op/file_copy_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/file_copy_task.h -------------------------------------------------------------------------------- /include/op/file_download_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/file_download_task.h -------------------------------------------------------------------------------- /include/op/file_upload_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/file_upload_task.h -------------------------------------------------------------------------------- /include/op/object_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/object_op.h -------------------------------------------------------------------------------- /include/op/service_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/op/service_op.h -------------------------------------------------------------------------------- /include/rapidxml/1.13/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/rapidxml/1.13/license.txt -------------------------------------------------------------------------------- /include/rapidxml/1.13/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/rapidxml/1.13/rapidxml.hpp -------------------------------------------------------------------------------- /include/rapidxml/1.13/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/rapidxml/1.13/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /include/rapidxml/1.13/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/rapidxml/1.13/rapidxml_print.hpp -------------------------------------------------------------------------------- /include/rapidxml/1.13/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/rapidxml/1.13/rapidxml_utils.hpp -------------------------------------------------------------------------------- /include/request/auditing_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/auditing_req.h -------------------------------------------------------------------------------- /include/request/base_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/base_req.h -------------------------------------------------------------------------------- /include/request/bucket_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/bucket_req.h -------------------------------------------------------------------------------- /include/request/data_process_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/data_process_req.h -------------------------------------------------------------------------------- /include/request/object_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/object_req.h -------------------------------------------------------------------------------- /include/request/service_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/request/service_req.h -------------------------------------------------------------------------------- /include/response/auditing_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/auditing_resp.h -------------------------------------------------------------------------------- /include/response/base_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/base_resp.h -------------------------------------------------------------------------------- /include/response/bucket_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/bucket_resp.h -------------------------------------------------------------------------------- /include/response/data_process_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/data_process_resp.h -------------------------------------------------------------------------------- /include/response/object_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/object_resp.h -------------------------------------------------------------------------------- /include/response/service_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/response/service_resp.h -------------------------------------------------------------------------------- /include/trsf/async_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/trsf/async_context.h -------------------------------------------------------------------------------- /include/trsf/async_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/trsf/async_task.h -------------------------------------------------------------------------------- /include/trsf/transfer_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/trsf/transfer_handler.h -------------------------------------------------------------------------------- /include/util/auth_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/auth_tool.h -------------------------------------------------------------------------------- /include/util/base_op_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/base_op_util.h -------------------------------------------------------------------------------- /include/util/codec_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/codec_util.h -------------------------------------------------------------------------------- /include/util/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/crc64.h -------------------------------------------------------------------------------- /include/util/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/file_util.h -------------------------------------------------------------------------------- /include/util/http_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/http_sender.h -------------------------------------------------------------------------------- /include/util/illegal_intercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/illegal_intercept.h -------------------------------------------------------------------------------- /include/util/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/log_util.h -------------------------------------------------------------------------------- /include/util/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/lru_cache.h -------------------------------------------------------------------------------- /include/util/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/noncopyable.h -------------------------------------------------------------------------------- /include/util/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/sha1.h -------------------------------------------------------------------------------- /include/util/simple_dns_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/simple_dns_cache.h -------------------------------------------------------------------------------- /include/util/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/string_util.h -------------------------------------------------------------------------------- /include/util/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/include/util/test_utils.h -------------------------------------------------------------------------------- /install-libpoco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/install-libpoco.sh -------------------------------------------------------------------------------- /libs/Win32/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/linux/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/macOS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cos_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/cos_api.cpp -------------------------------------------------------------------------------- /src/cos_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/cos_config.cpp -------------------------------------------------------------------------------- /src/cos_sys_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/cos_sys_config.cpp -------------------------------------------------------------------------------- /src/op/base_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/base_op.cpp -------------------------------------------------------------------------------- /src/op/bucket_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/bucket_op.cpp -------------------------------------------------------------------------------- /src/op/cos_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/cos_result.cpp -------------------------------------------------------------------------------- /src/op/file_copy_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/file_copy_task.cpp -------------------------------------------------------------------------------- /src/op/file_download_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/file_download_task.cpp -------------------------------------------------------------------------------- /src/op/file_upload_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/file_upload_task.cpp -------------------------------------------------------------------------------- /src/op/object_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/object_op.cpp -------------------------------------------------------------------------------- /src/op/service_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/op/service_op.cpp -------------------------------------------------------------------------------- /src/request/auditing_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/request/auditing_req.cpp -------------------------------------------------------------------------------- /src/request/base_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/request/base_req.cpp -------------------------------------------------------------------------------- /src/request/bucket_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/request/bucket_req.cpp -------------------------------------------------------------------------------- /src/request/data_process_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/request/data_process_req.cpp -------------------------------------------------------------------------------- /src/request/object_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/request/object_req.cpp -------------------------------------------------------------------------------- /src/response/auditing_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/auditing_resp.cpp -------------------------------------------------------------------------------- /src/response/base_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/base_resp.cpp -------------------------------------------------------------------------------- /src/response/bucket_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/bucket_resp.cpp -------------------------------------------------------------------------------- /src/response/data_process_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/data_process_resp.cpp -------------------------------------------------------------------------------- /src/response/object_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/object_resp.cpp -------------------------------------------------------------------------------- /src/response/service_resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/response/service_resp.cpp -------------------------------------------------------------------------------- /src/trsf/transfer_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/trsf/transfer_handler.cpp -------------------------------------------------------------------------------- /src/util/auth_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/auth_tool.cpp -------------------------------------------------------------------------------- /src/util/base_op_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/base_op_util.cpp -------------------------------------------------------------------------------- /src/util/codec_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/codec_util.cpp -------------------------------------------------------------------------------- /src/util/crc64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/crc64.cpp -------------------------------------------------------------------------------- /src/util/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/file_util.cpp -------------------------------------------------------------------------------- /src/util/http_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/http_sender.cpp -------------------------------------------------------------------------------- /src/util/illegal_intercept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/illegal_intercept.cpp -------------------------------------------------------------------------------- /src/util/log_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/log_util.cpp -------------------------------------------------------------------------------- /src/util/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/sha1.cpp -------------------------------------------------------------------------------- /src/util/simple_dns_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/simple_dns_cache.cpp -------------------------------------------------------------------------------- /src/util/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/string_util.cpp -------------------------------------------------------------------------------- /src/util/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/src/util/test_utils.cpp -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractDelegate.h -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractEvent.h -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractObserver.h -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractPriorityDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractPriorityDelegate.h -------------------------------------------------------------------------------- /third_party/include/Poco/AbstractStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AbstractStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/AccessExpirationDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AccessExpirationDecorator.h -------------------------------------------------------------------------------- /third_party/include/Poco/AccessExpireCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AccessExpireCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/AccessExpireLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AccessExpireLRUCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/AccessExpireStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AccessExpireStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/ActiveDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ActiveDispatcher.h -------------------------------------------------------------------------------- /third_party/include/Poco/ActiveMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ActiveMethod.h -------------------------------------------------------------------------------- /third_party/include/Poco/ActiveResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ActiveResult.h -------------------------------------------------------------------------------- /third_party/include/Poco/ActiveRunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ActiveRunnable.h -------------------------------------------------------------------------------- /third_party/include/Poco/ActiveStarter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ActiveStarter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Activity.h -------------------------------------------------------------------------------- /third_party/include/Poco/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Alignment.h -------------------------------------------------------------------------------- /third_party/include/Poco/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Any.h -------------------------------------------------------------------------------- /third_party/include/Poco/Ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Ascii.h -------------------------------------------------------------------------------- /third_party/include/Poco/AsyncChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AsyncChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/AtomicCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AtomicCounter.h -------------------------------------------------------------------------------- /third_party/include/Poco/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AutoPtr.h -------------------------------------------------------------------------------- /third_party/include/Poco/AutoReleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/AutoReleasePool.h -------------------------------------------------------------------------------- /third_party/include/Poco/BasicEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/BasicEvent.h -------------------------------------------------------------------------------- /third_party/include/Poco/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Buffer.h -------------------------------------------------------------------------------- /third_party/include/Poco/BufferAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/BufferAllocator.h -------------------------------------------------------------------------------- /third_party/include/Poco/BufferedBidirectionalStreamBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/BufferedBidirectionalStreamBuf.h -------------------------------------------------------------------------------- /third_party/include/Poco/BufferedStreamBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/BufferedStreamBuf.h -------------------------------------------------------------------------------- /third_party/include/Poco/Bugcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Bugcheck.h -------------------------------------------------------------------------------- /third_party/include/Poco/Checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Checksum.h -------------------------------------------------------------------------------- /third_party/include/Poco/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Config.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/Cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/Cipher.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CipherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CipherFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CipherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CipherImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CipherKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CipherKey.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CipherKeyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CipherKeyImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/Crypto.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CryptoException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CryptoException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CryptoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CryptoStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/CryptoTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/CryptoTransform.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/DigestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/DigestEngine.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/ECDSADigestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/ECDSADigestEngine.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/ECKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/ECKey.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/ECKeyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/ECKeyImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/EVPPKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/EVPPKey.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/KeyPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/KeyPair.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/KeyPairImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/KeyPairImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/OpenSSLInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/OpenSSLInitializer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/PKCS12Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/PKCS12Container.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/RSACipherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/RSACipherImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/RSADigestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/RSADigestEngine.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/RSAKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/RSAKey.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/RSAKeyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/RSAKeyImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Crypto/X509Certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Crypto/X509Certificate.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractBinder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractBinding.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractExtraction.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractExtractor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractPreparation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractPreparation.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractPreparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractPreparator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AbstractSessionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AbstractSessionImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/ArchiveStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/ArchiveStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/AutoTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/AutoTransaction.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Binding.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Bulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Bulk.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/BulkBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/BulkBinding.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/BulkExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/BulkExtraction.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Column.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Connector.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Constants.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Data.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/DataException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/DataException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Date.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/DynamicDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/DynamicDateTime.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/DynamicLOB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/DynamicLOB.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Extraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Extraction.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/LOB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/LOB.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/LOBStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/LOBStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Limit.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/MetaColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/MetaColumn.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/PooledSessionHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/PooledSessionHolder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/PooledSessionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/PooledSessionImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Position.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Preparation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Preparation.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Range.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/RecordSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/RecordSet.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Row.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/RowFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/RowFilter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/RowFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/RowFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/RowIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/RowIterator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/Binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/Binder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/Connector.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/Extractor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/Notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/Notifier.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/SQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/SQLite.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/SQLiteException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/SQLiteException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/SQLiteStatementImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/SQLiteStatementImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/SessionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/SessionImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SQLite/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SQLite/Utility.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Session.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SessionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SessionFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SessionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SessionImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SessionPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SessionPool.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SessionPoolContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SessionPoolContainer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/SimpleRowFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/SimpleRowFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Statement.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/StatementCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/StatementCreator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/StatementImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/StatementImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Time.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/Transaction.h -------------------------------------------------------------------------------- /third_party/include/Poco/Data/TypeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Data/TypeHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/DataURIStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DataURIStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/DataURIStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DataURIStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DateTime.h -------------------------------------------------------------------------------- /third_party/include/Poco/DateTimeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DateTimeFormat.h -------------------------------------------------------------------------------- /third_party/include/Poco/DateTimeFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DateTimeFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/DateTimeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DateTimeParser.h -------------------------------------------------------------------------------- /third_party/include/Poco/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Debugger.h -------------------------------------------------------------------------------- /third_party/include/Poco/DefaultStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DefaultStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/DeflatingStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DeflatingStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Delegate.h -------------------------------------------------------------------------------- /third_party/include/Poco/DigestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DigestEngine.h -------------------------------------------------------------------------------- /third_party/include/Poco/DigestStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DigestStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DirectoryIterator.h -------------------------------------------------------------------------------- /third_party/include/Poco/DirectoryIteratorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DirectoryIteratorStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/DirectoryIterator_UNIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DirectoryIterator_UNIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/DirectoryIterator_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DirectoryIterator_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/DirectoryIterator_WIN32U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/DirectoryIterator_WIN32U.h -------------------------------------------------------------------------------- /third_party/include/Poco/Dynamic/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Dynamic/Pair.h -------------------------------------------------------------------------------- /third_party/include/Poco/Dynamic/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Dynamic/Struct.h -------------------------------------------------------------------------------- /third_party/include/Poco/Dynamic/Var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Dynamic/Var.h -------------------------------------------------------------------------------- /third_party/include/Poco/Dynamic/VarHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Dynamic/VarHolder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Dynamic/VarIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Dynamic/VarIterator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Event.h -------------------------------------------------------------------------------- /third_party/include/Poco/EventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/EventArgs.h -------------------------------------------------------------------------------- /third_party/include/Poco/EventChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/EventChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/EventLogChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/EventLogChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/Event_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Event_POSIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Event_VX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Event_VX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Event_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Event_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Exception.h -------------------------------------------------------------------------------- /third_party/include/Poco/FIFOBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FIFOBuffer.h -------------------------------------------------------------------------------- /third_party/include/Poco/FIFOBufferStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FIFOBufferStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/FIFOEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FIFOEvent.h -------------------------------------------------------------------------------- /third_party/include/Poco/FIFOStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FIFOStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_C99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_C99.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_DEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_DEC.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_DUMMY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_DUMMY.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_QNX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_QNX.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_SUN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_SUN.h -------------------------------------------------------------------------------- /third_party/include/Poco/FPEnvironment_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FPEnvironment_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File.h -------------------------------------------------------------------------------- /third_party/include/Poco/FileChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FileChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FileStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/FileStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FileStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/FileStream_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FileStream_POSIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/FileStream_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/FileStream_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/File_UNIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File_UNIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/File_VX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File_VX.h -------------------------------------------------------------------------------- /third_party/include/Poco/File_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/File_WIN32U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File_WIN32U.h -------------------------------------------------------------------------------- /third_party/include/Poco/File_WINCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/File_WINCE.h -------------------------------------------------------------------------------- /third_party/include/Poco/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Format.h -------------------------------------------------------------------------------- /third_party/include/Poco/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Foundation.h -------------------------------------------------------------------------------- /third_party/include/Poco/HMACEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/HMACEngine.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Array.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Handler.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/JSON.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/JSONException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/JSONException.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Object.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/ParseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/ParseHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Parser.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/ParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/ParserImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/PrintHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/PrintHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Query.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Stringifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Stringifier.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/Template.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSON/TemplateCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSON/TemplateCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/JSONString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/JSONString.h -------------------------------------------------------------------------------- /third_party/include/Poco/ListMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ListMap.h -------------------------------------------------------------------------------- /third_party/include/Poco/LocalDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/LocalDateTime.h -------------------------------------------------------------------------------- /third_party/include/Poco/MD4Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/MD4Engine.h -------------------------------------------------------------------------------- /third_party/include/Poco/MD5Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/MD5Engine.h -------------------------------------------------------------------------------- /third_party/include/Poco/MetaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/MetaObject.h -------------------------------------------------------------------------------- /third_party/include/Poco/MetaProgramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/MetaProgramming.h -------------------------------------------------------------------------------- /third_party/include/Poco/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Mutex.h -------------------------------------------------------------------------------- /third_party/include/Poco/Mutex_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Mutex_POSIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Mutex_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Mutex_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/Mutex_WINCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Mutex_WINCE.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/AbstractHTTPRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/AbstractHTTPRequestHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/AcceptCertificateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/AcceptCertificateHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/CertificateHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/CertificateHandlerFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/CertificateHandlerFactoryMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/CertificateHandlerFactoryMgr.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ConsoleCertificateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ConsoleCertificateHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/Context.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/DNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/DNS.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/DatagramSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/DatagramSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/DatagramSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/DatagramSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/DialogSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/DialogSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/EscapeHTMLStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/EscapeHTMLStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/FTPClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/FTPClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/FTPSClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/FTPSClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/FTPSStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/FTPSStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/FTPStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/FTPStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/FilePartSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/FilePartSource.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTMLForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTMLForm.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPAuthenticationParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPAuthenticationParams.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPBasicCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPBasicCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPBasicStreamBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPBasicStreamBuf.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPBufferAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPBufferAllocator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPChunkedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPChunkedStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPCookie.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPDigestCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPDigestCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPFixedLengthStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPFixedLengthStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPHeaderStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPHeaderStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPIOStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPMessage.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPNTLMCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPNTLMCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPRequest.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPRequestHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPRequestHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPRequestHandlerFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPResponse.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSSessionInstantiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSSessionInstantiator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerConnection.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerConnectionFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerParams.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerRequest.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerRequestImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerRequestImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerResponse.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerResponseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerResponseImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPServerSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPServerSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSessionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSessionFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPSessionInstantiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPSessionInstantiator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HTTPStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HTTPStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/HostEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/HostEntry.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPClient.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPEventArgs.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPPacket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPPacketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPPacketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ICMPv4PacketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ICMPv4PacketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/IPAddress.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/IPAddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/IPAddressImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/InvalidCertificateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/InvalidCertificateHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/KeyConsoleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/KeyConsoleHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/KeyFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/KeyFileHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MailMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MailMessage.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MailRecipient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MailRecipient.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MailStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MailStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MediaType.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MessageHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MessageHeader.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MultiSocketPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MultiSocketPoller.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MulticastSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MulticastSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MultipartReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MultipartReader.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/MultipartWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/MultipartWriter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NTLMCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NTLMCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NTPClient.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NTPEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NTPEventArgs.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NTPPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NTPPacket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NameValueCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NameValueCollection.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/Net.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NetException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NetException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NetSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NetSSL.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NetworkInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NetworkInterface.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/NullPartHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/NullPartHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/OAuth10Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/OAuth10Credentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/OAuth20Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/OAuth20Credentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/POP3ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/POP3ClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ParallelSocketAcceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ParallelSocketAcceptor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ParallelSocketReactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ParallelSocketReactor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PartHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PartHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PartSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PartSource.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PartStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PartStore.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PollSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PollSet.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PrivateKeyFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PrivateKeyFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PrivateKeyFactoryMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PrivateKeyFactoryMgr.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/PrivateKeyPassphraseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/PrivateKeyPassphraseHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/QuotedPrintableDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/QuotedPrintableDecoder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/QuotedPrintableEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/QuotedPrintableEncoder.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/RawSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/RawSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/RawSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/RawSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/RejectCertificateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/RejectCertificateHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/RemoteSyslogChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/RemoteSyslogChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/RemoteSyslogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/RemoteSyslogListener.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SMTPChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SMTPChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SMTPClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SMTPClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SSLException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SSLException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SSLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SSLManager.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SSPINTLMCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SSPINTLMCredentials.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureSMTPClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureSMTPClientSession.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureServerSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureServerSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureServerSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureStreamSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureStreamSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SecureStreamSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SecureStreamSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ServerSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/ServerSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/ServerSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/Session.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SingleSocketPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SingleSocketPoller.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/Socket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketAcceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketAcceptor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketAddress.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketAddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketAddressImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketConnector.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketDefs.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketNotification.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketNotifier.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketReactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketReactor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/SocketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/SocketStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/StreamSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/StreamSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/StreamSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/StreamSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/StringPartSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/StringPartSource.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/TCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/TCPServer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/TCPServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/TCPServerConnection.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/TCPServerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/TCPServerConnectionFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/TCPServerDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/TCPServerDispatcher.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/TCPServerParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/TCPServerParams.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/UDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/UDPClient.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/UDPHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/UDPHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/UDPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/UDPServer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/UDPServerParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/UDPServerParams.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/UDPSocketReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/UDPSocketReader.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/Utility.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/VerificationErrorArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/VerificationErrorArgs.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/WebSocket.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/WebSocketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/WebSocketImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/Net/X509Certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Net/X509Certificate.h -------------------------------------------------------------------------------- /third_party/include/Poco/Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Notification.h -------------------------------------------------------------------------------- /third_party/include/Poco/NotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NotificationCenter.h -------------------------------------------------------------------------------- /third_party/include/Poco/NotificationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NotificationQueue.h -------------------------------------------------------------------------------- /third_party/include/Poco/NotificationStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NotificationStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/NullChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NullChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/NullStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NullStream.h -------------------------------------------------------------------------------- /third_party/include/Poco/Nullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Nullable.h -------------------------------------------------------------------------------- /third_party/include/Poco/NumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NumberFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/NumberParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NumberParser.h -------------------------------------------------------------------------------- /third_party/include/Poco/NumericString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/NumericString.h -------------------------------------------------------------------------------- /third_party/include/Poco/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Path.h -------------------------------------------------------------------------------- /third_party/include/Poco/Path_UNIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Path_UNIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Path_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Path_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/Path_WIN32U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Path_WIN32U.h -------------------------------------------------------------------------------- /third_party/include/Poco/Path_WINCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Path_WINCE.h -------------------------------------------------------------------------------- /third_party/include/Poco/PatternFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/PatternFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Platform.h -------------------------------------------------------------------------------- /third_party/include/Poco/Platform_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Platform_POSIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Platform_VX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Platform_VX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Platform_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Platform_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/RecursiveDirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/RecursiveDirectoryIterator.h -------------------------------------------------------------------------------- /third_party/include/Poco/RecursiveDirectoryIteratorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/RecursiveDirectoryIteratorImpl.h -------------------------------------------------------------------------------- /third_party/include/Poco/RefCountedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/RefCountedObject.h -------------------------------------------------------------------------------- /third_party/include/Poco/Runnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Runnable.h -------------------------------------------------------------------------------- /third_party/include/Poco/RunnableAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/RunnableAdapter.h -------------------------------------------------------------------------------- /third_party/include/Poco/SHA1Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SHA1Engine.h -------------------------------------------------------------------------------- /third_party/include/Poco/ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ScopedLock.h -------------------------------------------------------------------------------- /third_party/include/Poco/SharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SharedPtr.h -------------------------------------------------------------------------------- /third_party/include/Poco/SignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SignalHandler.h -------------------------------------------------------------------------------- /third_party/include/Poco/SimpleFileChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SimpleFileChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/SimpleHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SimpleHashTable.h -------------------------------------------------------------------------------- /third_party/include/Poco/SingletonHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SingletonHolder.h -------------------------------------------------------------------------------- /third_party/include/Poco/SortedDirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/SortedDirectoryIterator.h -------------------------------------------------------------------------------- /third_party/include/Poco/StrategyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StrategyCollection.h -------------------------------------------------------------------------------- /third_party/include/Poco/StreamChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StreamChannel.h -------------------------------------------------------------------------------- /third_party/include/Poco/StreamConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StreamConverter.h -------------------------------------------------------------------------------- /third_party/include/Poco/StreamCopier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StreamCopier.h -------------------------------------------------------------------------------- /third_party/include/Poco/StreamTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StreamTokenizer.h -------------------------------------------------------------------------------- /third_party/include/Poco/StreamUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StreamUtil.h -------------------------------------------------------------------------------- /third_party/include/Poco/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/String.h -------------------------------------------------------------------------------- /third_party/include/Poco/StringTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/StringTokenizer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Task.h -------------------------------------------------------------------------------- /third_party/include/Poco/TaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/TaskManager.h -------------------------------------------------------------------------------- /third_party/include/Poco/TaskNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/TaskNotification.h -------------------------------------------------------------------------------- /third_party/include/Poco/TextEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/TextEncoding.h -------------------------------------------------------------------------------- /third_party/include/Poco/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Thread.h -------------------------------------------------------------------------------- /third_party/include/Poco/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ThreadLocal.h -------------------------------------------------------------------------------- /third_party/include/Poco/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ThreadPool.h -------------------------------------------------------------------------------- /third_party/include/Poco/ThreadTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/ThreadTarget.h -------------------------------------------------------------------------------- /third_party/include/Poco/Thread_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Thread_POSIX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Thread_VX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Thread_VX.h -------------------------------------------------------------------------------- /third_party/include/Poco/Thread_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Thread_WIN32.h -------------------------------------------------------------------------------- /third_party/include/Poco/Thread_WINCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Thread_WINCE.h -------------------------------------------------------------------------------- /third_party/include/Poco/Timespan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Timespan.h -------------------------------------------------------------------------------- /third_party/include/Poco/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Timestamp.h -------------------------------------------------------------------------------- /third_party/include/Poco/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/TypeList.h -------------------------------------------------------------------------------- /third_party/include/Poco/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Types.h -------------------------------------------------------------------------------- /third_party/include/Poco/URI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/URI.h -------------------------------------------------------------------------------- /third_party/include/Poco/URIStreamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/URIStreamFactory.h -------------------------------------------------------------------------------- /third_party/include/Poco/URIStreamOpener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/URIStreamOpener.h -------------------------------------------------------------------------------- /third_party/include/Poco/UTF16Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UTF16Encoding.h -------------------------------------------------------------------------------- /third_party/include/Poco/UTF32Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UTF32Encoding.h -------------------------------------------------------------------------------- /third_party/include/Poco/UTF8Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UTF8Encoding.h -------------------------------------------------------------------------------- /third_party/include/Poco/UTF8String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UTF8String.h -------------------------------------------------------------------------------- /third_party/include/Poco/UTFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UTFString.h -------------------------------------------------------------------------------- /third_party/include/Poco/UnWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UnWindows.h -------------------------------------------------------------------------------- /third_party/include/Poco/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Unicode.h -------------------------------------------------------------------------------- /third_party/include/Poco/UnicodeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UnicodeConverter.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueAccessExpireCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueAccessExpireCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueAccessExpireLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueAccessExpireLRUCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueAccessExpireStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueAccessExpireStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueExpireCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueExpireCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueExpireLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueExpireLRUCache.h -------------------------------------------------------------------------------- /third_party/include/Poco/UniqueExpireStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/UniqueExpireStrategy.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/AbstractConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/AbstractConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Application.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/ConfigurationMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/ConfigurationMapper.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/ConfigurationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/ConfigurationView.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/FilesystemConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/FilesystemConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/HelpFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/HelpFormatter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/IniFileConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/IniFileConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/IntValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/IntValidator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/JSONConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/JSONConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/LayeredConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/LayeredConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/LoggingConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/LoggingConfigurator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/LoggingSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/LoggingSubsystem.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/MapConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/MapConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Option.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/OptionCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/OptionCallback.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/OptionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/OptionException.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/OptionProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/OptionProcessor.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/OptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/OptionSet.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/PropertyFileConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/PropertyFileConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/RegExpValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/RegExpValidator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/ServerApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/ServerApplication.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Subsystem.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/SystemConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/SystemConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Timer.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/TimerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/TimerTask.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/TimerTaskAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/TimerTaskAdapter.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Units.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Util.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/Validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/Validator.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/WinRegistryConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/WinRegistryConfiguration.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/WinRegistryKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/WinRegistryKey.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/WinService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/WinService.h -------------------------------------------------------------------------------- /third_party/include/Poco/Util/XMLConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/Poco/Util/XMLConfiguration.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /third_party/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /third_party/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /third_party/include/openssl/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /third_party/include/openssl/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /third_party/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/aes.h -------------------------------------------------------------------------------- /third_party/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/applink.c -------------------------------------------------------------------------------- /third_party/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/asn1.h -------------------------------------------------------------------------------- /third_party/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /third_party/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/asn1err.h -------------------------------------------------------------------------------- /third_party/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/asn1t.h -------------------------------------------------------------------------------- /third_party/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/async.h -------------------------------------------------------------------------------- /third_party/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/bio.h -------------------------------------------------------------------------------- /third_party/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/bioerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/blowfish.h -------------------------------------------------------------------------------- /third_party/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/bn.h -------------------------------------------------------------------------------- /third_party/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/bnerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/buffer.h -------------------------------------------------------------------------------- /third_party/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/buffererr.h -------------------------------------------------------------------------------- /third_party/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/camellia.h -------------------------------------------------------------------------------- /third_party/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cast.h -------------------------------------------------------------------------------- /third_party/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cmac.h -------------------------------------------------------------------------------- /third_party/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cms.h -------------------------------------------------------------------------------- /third_party/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cmserr.h -------------------------------------------------------------------------------- /third_party/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/comp.h -------------------------------------------------------------------------------- /third_party/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/comperr.h -------------------------------------------------------------------------------- /third_party/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/conf.h -------------------------------------------------------------------------------- /third_party/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/conf_api.h -------------------------------------------------------------------------------- /third_party/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/conferr.h -------------------------------------------------------------------------------- /third_party/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/crypto.h -------------------------------------------------------------------------------- /third_party/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ct.h -------------------------------------------------------------------------------- /third_party/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/cterr.h -------------------------------------------------------------------------------- /third_party/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/des.h -------------------------------------------------------------------------------- /third_party/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/dh.h -------------------------------------------------------------------------------- /third_party/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/dherr.h -------------------------------------------------------------------------------- /third_party/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/dsa.h -------------------------------------------------------------------------------- /third_party/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/dtls1.h -------------------------------------------------------------------------------- /third_party/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/e_os2.h -------------------------------------------------------------------------------- /third_party/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /third_party/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ec.h -------------------------------------------------------------------------------- /third_party/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ecdh.h -------------------------------------------------------------------------------- /third_party/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /third_party/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ecerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/engine.h -------------------------------------------------------------------------------- /third_party/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/engineerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/err.h -------------------------------------------------------------------------------- /third_party/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/evp.h -------------------------------------------------------------------------------- /third_party/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/evperr.h -------------------------------------------------------------------------------- /third_party/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/hmac.h -------------------------------------------------------------------------------- /third_party/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/idea.h -------------------------------------------------------------------------------- /third_party/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/kdf.h -------------------------------------------------------------------------------- /third_party/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/kdferr.h -------------------------------------------------------------------------------- /third_party/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/lhash.h -------------------------------------------------------------------------------- /third_party/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/md2.h -------------------------------------------------------------------------------- /third_party/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/md4.h -------------------------------------------------------------------------------- /third_party/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/md5.h -------------------------------------------------------------------------------- /third_party/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/mdc2.h -------------------------------------------------------------------------------- /third_party/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/modes.h -------------------------------------------------------------------------------- /third_party/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /third_party/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/objects.h -------------------------------------------------------------------------------- /third_party/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/objectserr.h -------------------------------------------------------------------------------- /third_party/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ocsp.h -------------------------------------------------------------------------------- /third_party/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /third_party/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /third_party/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/opensslv.h -------------------------------------------------------------------------------- /third_party/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /third_party/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pem.h -------------------------------------------------------------------------------- /third_party/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pem2.h -------------------------------------------------------------------------------- /third_party/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pemerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /third_party/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /third_party/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /third_party/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /third_party/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rand.h -------------------------------------------------------------------------------- /third_party/include/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rand_drbg.h -------------------------------------------------------------------------------- /third_party/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/randerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rc2.h -------------------------------------------------------------------------------- /third_party/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rc4.h -------------------------------------------------------------------------------- /third_party/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rc5.h -------------------------------------------------------------------------------- /third_party/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ripemd.h -------------------------------------------------------------------------------- /third_party/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rsa.h -------------------------------------------------------------------------------- /third_party/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/safestack.h -------------------------------------------------------------------------------- /third_party/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/seed.h -------------------------------------------------------------------------------- /third_party/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/sha.h -------------------------------------------------------------------------------- /third_party/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/srp.h -------------------------------------------------------------------------------- /third_party/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/srtp.h -------------------------------------------------------------------------------- /third_party/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ssl.h -------------------------------------------------------------------------------- /third_party/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ssl2.h -------------------------------------------------------------------------------- /third_party/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ssl3.h -------------------------------------------------------------------------------- /third_party/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/sslerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/stack.h -------------------------------------------------------------------------------- /third_party/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/store.h -------------------------------------------------------------------------------- /third_party/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/storeerr.h -------------------------------------------------------------------------------- /third_party/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/symhacks.h -------------------------------------------------------------------------------- /third_party/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/tls1.h -------------------------------------------------------------------------------- /third_party/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ts.h -------------------------------------------------------------------------------- /third_party/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/tserr.h -------------------------------------------------------------------------------- /third_party/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/txt_db.h -------------------------------------------------------------------------------- /third_party/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/ui.h -------------------------------------------------------------------------------- /third_party/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/uierr.h -------------------------------------------------------------------------------- /third_party/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /third_party/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/x509.h -------------------------------------------------------------------------------- /third_party/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /third_party/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/x509err.h -------------------------------------------------------------------------------- /third_party/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/x509v3.h -------------------------------------------------------------------------------- /third_party/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /third_party/lib/Android/aarch64/openssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/Android/aarch64/poco/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/Android/armv7-a/openssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/Android/armv7-a/poco/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/Win32/gtest/gtest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/gtest/gtest.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/gtest/gtest_main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/gtest/gtest_main.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/openssl/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/openssl/libcrypto-1_1.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/openssl/libcrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/openssl/libcrypto.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/openssl/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/openssl/libssl-1_1.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/openssl/libssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/openssl/libssl.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/openssl/openssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/openssl/openssl.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoCrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoCrypto.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoCrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoCrypto.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoData.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoDataODBC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoDataODBC.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoDataSQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoDataSQLite.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoEncodings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoEncodings.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoFoundation.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoFoundation.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoFoundation.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoJSON.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoJSON.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoJSON.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoJSON.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoMongoDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoMongoDB.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoNet.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoNet.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoNet.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoNetSSL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoNetSSL.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoNetSSL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoNetSSL.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoRedis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoRedis.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoUtil.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoUtil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoUtil.lib -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoXML.dll -------------------------------------------------------------------------------- /third_party/lib/Win32/poco/PocoXML.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/Win32/poco/PocoXML.lib -------------------------------------------------------------------------------- /third_party/lib/iOS/aarch64/openssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/iOS/aarch64/poco/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lib/linux/gtest/libgtest.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/gtest/libgtest.a -------------------------------------------------------------------------------- /third_party/lib/linux/gtest/libgtest_main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/gtest/libgtest_main.a -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoCrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoCrypto.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoFoundation.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoFoundation.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoJSON.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoJSON.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoNet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoNet.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoNetSSL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoNetSSL.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoUtil.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoUtil.so -------------------------------------------------------------------------------- /third_party/lib/linux/poco/libPocoXML.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/linux/poco/libPocoXML.so -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoCrypto.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoCrypto.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoCrypto.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoCrypto.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoFoundation.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoFoundation.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoFoundation.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoJSON.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoJSON.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoJSON.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoJSON.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoNet.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoNet.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoNet.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoNet.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoNetSSL.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoNetSSL.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoNetSSL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoNetSSL.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoUtil.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoUtil.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoUtil.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoUtil.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoXML.64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoXML.64.dylib -------------------------------------------------------------------------------- /third_party/lib/macOS/poco/libPocoXML.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/macOS/poco/libPocoXML.dylib -------------------------------------------------------------------------------- /third_party/lib/x64/gtest/gtest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/gtest/gtest.lib -------------------------------------------------------------------------------- /third_party/lib/x64/gtest/gtest_main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/gtest/gtest_main.lib -------------------------------------------------------------------------------- /third_party/lib/x64/openssl/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/openssl/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /third_party/lib/x64/openssl/libcrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/openssl/libcrypto.lib -------------------------------------------------------------------------------- /third_party/lib/x64/openssl/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/openssl/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /third_party/lib/x64/openssl/libssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/openssl/libssl.lib -------------------------------------------------------------------------------- /third_party/lib/x64/openssl/openssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/openssl/openssl.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoCrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoCrypto.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoCrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoCrypto.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoFoundation.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoFoundation.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoFoundation.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoJSON.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoJSON.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoJSON.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoJSON.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoNet.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoNet.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoNet.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoNetSSL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoNetSSL.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoNetSSL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoNetSSL.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoUtil.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoUtil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoUtil.lib -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoXML.dll -------------------------------------------------------------------------------- /third_party/lib/x64/poco/PocoXML.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/third_party/lib/x64/poco/PocoXML.lib -------------------------------------------------------------------------------- /tools/cos-speed-test/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/tools/cos-speed-test/Readme.txt -------------------------------------------------------------------------------- /tools/cos-speed-test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/tools/cos-speed-test/config.json -------------------------------------------------------------------------------- /tools/cos-speed-test/cos-speed-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/tools/cos-speed-test/cos-speed-test -------------------------------------------------------------------------------- /tools/cos-speed-test/cos-speed-test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/tools/cos-speed-test/cos-speed-test.exe -------------------------------------------------------------------------------- /tools/cos-speed-test/cos-speed-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/tools/cos-speed-test/cos-speed-test.go -------------------------------------------------------------------------------- /unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /unittest/conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/conf/config.json -------------------------------------------------------------------------------- /unittest/conf/merge_xml_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/conf/merge_xml_results.py -------------------------------------------------------------------------------- /unittest/src/async_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/async_op_test.cpp -------------------------------------------------------------------------------- /unittest/src/auditing_req_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/auditing_req_test.cpp -------------------------------------------------------------------------------- /unittest/src/bucket_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/bucket_op_test.cpp -------------------------------------------------------------------------------- /unittest/src/bucket_response_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/bucket_response_test.cpp -------------------------------------------------------------------------------- /unittest/src/live_channel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/live_channel_test.cpp -------------------------------------------------------------------------------- /unittest/src/mock_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/mock_server.h -------------------------------------------------------------------------------- /unittest/src/object_op_retry_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/object_op_retry_test.cpp -------------------------------------------------------------------------------- /unittest/src/object_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/object_op_test.cpp -------------------------------------------------------------------------------- /unittest/src/object_request_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/object_request_test.cpp -------------------------------------------------------------------------------- /unittest/src/object_response_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/object_response_test.cpp -------------------------------------------------------------------------------- /unittest/src/util_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/cos-cpp-sdk-v5/HEAD/unittest/src/util_test.cpp --------------------------------------------------------------------------------