Skip to content

Commit 6fe6679

Browse files
author
Valtteri Heikkila
committed
Yet another rename in http_linux.cpp
1 parent 169ddaf commit 6fe6679

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Release/src/http/client/http_linux.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ namespace web { namespace http
335335

336336
if (ctx->m_connection->m_socket.is_open())
337337
{
338-
begin_send(ctx);
338+
write_request(ctx);
339339
}
340340
else
341341
{
@@ -392,7 +392,7 @@ namespace web { namespace http
392392
}
393393
}
394394

395-
void begin_send(std::shared_ptr<linux_client_request_context> ctx)
395+
void write_request(std::shared_ptr<linux_client_request_context> ctx)
396396
{
397397
if (ctx->m_ssl_stream)
398398
{
@@ -408,7 +408,7 @@ namespace web { namespace http
408408
{
409409
if (!ec)
410410
{
411-
begin_send(ctx);
411+
write_request(ctx);
412412
}
413413
else if (endpoints == tcp::resolver::iterator())
414414
{

0 commit comments

Comments
 (0)