webcc icon indicating copy to clipboard operation
webcc copied to clipboard

Lightweight C++ HTTP client and server library based on Asio for embedding purpose.

Results 11 webcc issues
Sort by recently updated
recently updated
newest added

我复制了Readme中的完整客户端例子到VS项目中编译,出现”LNK2001 无法解析的外部符号“错误.(服务端代码不会引起这个错误) 以下为错误内容: ``` 已启动重新生成… 1>------ 已启动全部重新生成: 项目: Application Communication Interface, 配置: Release x64 ------ 1>Application Communication Interface.cpp 1>Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example: 1>- add -D_WIN32_WINNT=0x0601 to...

我看了您的部分代码(主要是关于http client部分的),发现其本身就是支持异步调用的。 --------------------------------------------------------------------------------------- void ClientBase::AsyncResolve(string_view default_port) { std::string port = request_->port(); if (port.empty()) { port = ToString(default_port); } LOG_VERB("Resolve host (%s)", request_->host().c_str()); // The protocol depends on the `host`, both...

我的项目中也使用了io_service.如何才能复用项目中的io_service

logger.cc:142 error: syscall was not declared in this scope fixed for ubuntu 20.x

Hi, I am testing example/form_server both my Mac Pro and also raspi4 . its super slower than the python (fastapi) ? almost 10 times slower Why is this ? am...

请问如何异步request?

As shown in title, if I want to upload or respond multi-files, how to implement these functions? Thanks~~

In Multimedia Files transmission, streaming is important, how can we use webcc to achieve this? Thanks.

我移植到嵌入式系统下执行的时候,发现标题中出现的错误,但编译没有任何问题。在执行时会出现这个错误。一旦开启Run()开始执行的时候,就出现了这个错误。 想请问你们有没有遇到过类似的情形呢? 谢谢!