Opened 11 years ago

Closed 11 years ago

#5910 closed Bugs (wontfix)

asio/example/echo/blocking_tcp_echo_client.cpp

Reported by: nojhan Owned by: chris_kohlhoff
Milestone: To Be Determined Component: asio
Version: Boost 1.42.0 Severity: Problem
Keywords: Cc:

Description

line 79:

size_t reply_length = boost::asio::read(s,

boost::asio::buffer(reply, request_length));

should be:

size_t reply_length = boost::asio::read(s,

boost::asio::buffer(reply, reply_length));

Change History (1)

comment:1 by nojhan <nojhan@…>, 11 years ago

Resolution: wontfix
Status: newclosed

Not a bug

Note: See TracTickets for help on using tickets.