
29 Oct
2008
29 Oct
'08
11:31 a.m.
Hi,
sorry for disturbing with peraphs stupid question, but I'm really hung: I'm not able to check the error code (boost::system::error_code) for a specific 'End of File' type.
When I print it, it's 'End of file', with int value = 2.
But how to check it?
I tried with something like:
if (error.default_error_condition() == boost::system::error_condition(boost::system::errc::XXX)) { ... }
But I don't know what to put in the XXX.
Br and thanks,
Try it err != boost::asio::error::eof From asio example. Best Regards, Sergei