[BACK]Return to sio.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Diff for /OpenXM_contrib2/asir2000/io/sio.c between version 1.12 and 1.16

version 1.12, 2001/10/09 01:36:21 version 1.16, 2002/10/03 01:12:46
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.11 2000/12/05 01:24:55 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.15 2001/12/27 04:07:15 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "setjmp.h"  #include <setjmp.h>
 #include "ox.h"  #include "ox.h"
 #if defined(VISUAL)  #if defined(VISUAL)
 #include <winsock2.h>  #include <winsock2.h>
Line 241  int try_connect(int use_unix,char *host,char *port_str
Line 241  int try_connect(int use_unix,char *host,char *port_str
                 } else                  } else
 #endif /* VISUAL */  #endif /* VISUAL */
                 {                  {
                           if ( !host )
                                   host = "127.0.0.1";
                         if ( (s = socket(AF_INET,SOCK_STREAM,0)) < 0 ) {                          if ( (s = socket(AF_INET,SOCK_STREAM,0)) < 0 ) {
                                 perror("socket");                                  perror("socket");
                                 return -1;                                  return -1;
Line 311  void free_iofp(int s)
Line 313  void free_iofp(int s)
         struct IOFP *r;          struct IOFP *r;
   
         r = &iofp[s];          r = &iofp[s];
         r->in = r->out = 0; r->s = 0;  
 #if !defined(VISUAL)  #if !defined(VISUAL)
           if ( r->in )
                   fclose(r->in);
           if ( r->out )
                   fclose(r->out);
         if ( r->socket )          if ( r->socket )
                 unlink(r->socket);                  unlink(r->socket);
           r->in = r->out = 0; r->s = 0;
 #endif  #endif
 }  }
   
Line 350  int get_iofp(int s1,char *af_sock,int is_server)
Line 356  int get_iofp(int s1,char *af_sock,int is_server)
 #else  #else
         iofp[i].in = fdopen(s1,"r");          iofp[i].in = fdopen(s1,"r");
         iofp[i].out = fdopen(s1,"w");          iofp[i].out = fdopen(s1,"w");
   #if !defined(__CYGWIN__)
         setbuffer(iofp[i].in,(char *)malloc(LBUFSIZ),LBUFSIZ);          setbuffer(iofp[i].in,(char *)malloc(LBUFSIZ),LBUFSIZ);
         setbuffer(iofp[i].out,(char *)malloc(LBUFSIZ),LBUFSIZ);          setbuffer(iofp[i].out,(char *)malloc(LBUFSIZ),LBUFSIZ);
   #endif
 #endif  #endif
         if ( little_endian )          if ( little_endian )
                 c = 1;                  c = 1;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.16

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>