Hi,
is there a document explaining error codes? What could cause the error mentioned above?
Best Ulrich
Hi Ulrich,
What is your platform? This is probably the errno (in hexadecimal) that the sendto() call returned so you will have to look at the dicumentation for the operating system you are using.
For eample in Linux the errno values can be found at: http://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html and the particular value 0x65 which corresponds to 101 in decimal is:
#define ENETUNREACH 101 /* Network is unreachable */
Gerardo
Hi Ulrich,
What is your platform? This is probably the errno (in hexadecimal) that the sendto() call returned so you will have to look at the dicumentation for the operating system you are using.
For eample in Linux the errno values can be found at: http://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html and the particular value 0x65 which corresponds to 101 in decimal is:
Gerardo