fpagliughi / sockpp

Modern C++ socket library.
BSD 3-Clause "New" or "Revised" License
769 stars 126 forks source link

[Android] Compile lib for android. #58

Closed talregev closed 2 years ago

talregev commented 2 years ago

Compile lib for android. In android the s in auto s = strerror_r(err, buf, sizeof(buf)); is type int. So convert int to string is with std::to_string(). Also convert from char* to string is from std::to_string().

https://stackoverflow.com/questions/32629222/how-to-use-strerror-r-properly-for-android