Rename http_response_t to http_message_t

This commit is contained in:
Vitaliy Filippov
2026-04-03 21:22:42 +03:00
parent 1dc8e82f37
commit aaecf332f1
3 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -112,7 +112,7 @@ void etcd_state_client_t::etcd_call_oneshot(std::string etcd_address, std::strin
"Connection: close\r\n"
"\r\n"+req;
auto http_cli = http_init(tfd, get_http_ctx());
auto cb = [http_cli, callback](const http_response_t *response)
auto cb = [http_cli, callback](const http_message_t *response)
{
std::string err;
json11::Json data;
@@ -152,7 +152,7 @@ void etcd_state_client_t::etcd_call(std::string api, json11::Json payload, int t
"\r\n"+req;
retries--;
auto cb = [this, api, payload, timeout, retries, interval, callback,
cur_addr = selected_etcd_address](const http_response_t *response)
cur_addr = selected_etcd_address](const http_message_t *response)
{
std::string err;
json11::Json data;
@@ -386,7 +386,7 @@ void etcd_state_client_t::start_etcd_watcher()
else
http_close(etcd_watch_ws);
open_websocket(etcd_watch_ws, etcd_address, etcd_api_path+"/watch", { .timeout = etcd_slow_timeout, .ssl = ssl },
[this, cur_addr = selected_etcd_address](const http_response_t *msg)
[this, cur_addr = selected_etcd_address](const http_message_t *msg)
{
if (msg->body.length())
{