=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/io/sio.c,v retrieving revision 1.7 retrieving revision 1.10 diff -u -p -r1.7 -r1.10 --- OpenXM_contrib2/asir2000/io/sio.c 2000/09/23 00:57:43 1.7 +++ OpenXM_contrib2/asir2000/io/sio.c 2000/11/15 01:20:27 1.10 @@ -44,14 +44,14 @@ * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. - * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.6 2000/08/22 05:04:18 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.9 2000/11/07 06:35:39 noro Exp $ */ #if INET #include "ca.h" #include "setjmp.h" #include "ox.h" #if defined(VISUAL) -#include +#include #else #include #include @@ -65,6 +65,7 @@ extern int little_endian; +int I_am_server; struct IOFP iofp[MAXIOFP]; #if !defined(_PA_RISC1_1) @@ -107,11 +108,14 @@ char *port_str; unsigned int port; static int count=0; +#if !defined(VISUAL) if ( use_unix ) { sprintf(port_str,"/tmp/ox%02x.XXXXXX",count); count++; mktemp(port_str); - } else { + } else +#endif + { port = ((unsigned int)mt_genrand()+(unsigned int)get_current_time()) %(65536-1024)+1024; sprintf(port_str,"%d",port); @@ -282,6 +286,7 @@ char *host,*port_str; return s; } +#if 0 close_allconnections() { int s; @@ -305,6 +310,12 @@ int s; free_iofp(s); } } +#else +close_allconnections() +{ + shutdown_all(); +} +#endif free_iofp(s) int s; @@ -416,4 +427,6 @@ int fd; return i; return -1; } + #endif /* INET */ +