fields@uktriton.cray.com (Mike Fields) / 1:14 pm Jan 15, 1991 If anybody is interested here is a simple VMS differences of the modifications that I needed to do to get DXRN to work using the VMS C Compiler. Without this DXRN tries to connect to an incorrect IP address for the server. ************ CLIENTLIB.C 287 char **ptr; 288 #ifdef h_addr ****** CLIENTLIB_ORIGINAL.C 287 #ifdef h_addr ************ ************ CLIENTLIB.C 366 ptr = (char **)(hp->h_addr); 367 368 (void) memcpy((char *) &sin.sin_addr, *ptr, hp->h_length); 369 if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) { ****** CLIENTLIB_ORIGINAL.C 363 (void) memcpy((char *) &sin.sin_addr, hp->h_addr, hp->h_length); 364 if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) { ************ I hope this was of help.