tags:

views:

59

answers:

3

Does anyone know where to find a reference for boost error codes. In particular, error codes returned by asynchronous socket handlers?, Google and grepping the header files have tuned up empty.

Thanks.

+1  A: 

It looks (from my relatively limited googling) like those are actually system codes. More info here: http://en.highscore.de/cpp/boost/errorhandling.html

livingtech
A: 

Are you using boost::system? This may provide some light: http://www.boost.org/doc/libs/1_44_0/libs/system/doc/index.html

rturrado
+2  A: 

you most likely want

#include <boost/asio/errors.hpp>

it is included in the asio documentation.

Sam Miller