NDDS_Transport_UDPv4_send:OS sendmsg() failure, error 0X65

2 posts / 0 new
Last post
Offline
Last seen: 9 years 1 month ago
Joined: 03/08/2013
Posts: 8
NDDS_Transport_UDPv4_send:OS sendmsg() failure, error 0X65

Hi,

is there a document explaining error codes? What could cause the error mentioned above?

Best Ulrich

Organization:
Keywords:
Gerardo Pardo's picture
Offline
Last seen: 3 weeks 1 day ago
Joined: 06/02/2010
Posts: 601

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