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

Diff for /OpenXM_contrib2/asir2000/io/tcpf.c between version 1.16.2.1 and 1.17

version 1.16.2.1, 2000/11/08 08:31:55 version 1.17, 2000/11/08 06:21:17
Line 309  Q *rp;
Line 309  Q *rp;
 }  }
   
 /*  /*
  try_accept(sock)   try_accept(sock,port)
 */  */
   
 void Ptry_accept(arg,rp)  void Ptry_accept(arg,rp)
Line 322  Q *rp;
Line 322  Q *rp;
                 use_unix = 0;                  use_unix = 0;
         else          else
                 use_unix = 1;                  use_unix = 1;
         s = try_accept(QTOS((Q)ARG0(arg)));          s = try_accept(use_unix,QTOS((Q)ARG0(arg)));
         STOQ(s,*rp);          STOQ(s,*rp);
 }  }
   
Line 448  Q *rp;
Line 448  Q *rp;
                         cs = try_connect(use_unix,host,control_port_str);                          cs = try_connect(use_unix,host,control_port_str);
                         ss = try_connect(use_unix,host,server_port_str);                          ss = try_connect(use_unix,host,server_port_str);
                 } else {                  } else {
                         cs = try_accept(cs);                          cs = try_accept(use_unix,cs);
                         ss = try_accept(ss);                          ss = try_accept(use_unix,ss);
                 }                  }
         } while ( cs < 0 || ss < 0 );          } while ( cs < 0 || ss < 0 );
   
Line 493  char *control_port_str,*server_port_str;
Line 493  char *control_port_str,*server_port_str;
 {  {
         char cmd[BUFSIZ];          char cmd[BUFSIZ];
         char localhost[BUFSIZ];          char localhost[BUFSIZ];
         char *dname,*conn_str,*rsh;          char *dname,*conn_str,*rsh,*dname0;
         char dname_str[BUFSIZ];          char dname_str[BUFSIZ];
         char AsirExe[BUFSIZ];          char AsirExe[BUFSIZ];
         STRING rootdir;          STRING rootdir;
         char prog[BUFSIZ];          char prog[BUFSIZ];
         char *av[BUFSIZ];          char *av[BUFSIZ];
   
         dname = use_x ? (char *)getenv("DISPLAY") : 0;          dname0 = (char *)getenv("DISPLAY");
           dname = use_x ? dname0 : 0;
         conn_str = conn_to_serv ? "1" : "0";          conn_str = conn_to_serv ? "1" : "0";
         rsh = getenv("ASIR_RSH");          rsh = getenv("ASIR_RSH");
         if ( !rsh )          if ( !rsh )
Line 542  char *control_port_str,*server_port_str;
Line 543  char *control_port_str,*server_port_str;
                                         control_port_str,server_port_str,server,dname,0);                                          control_port_str,server_port_str,server,dname,0);
                         else                          else
                                 execlp(launcher,launcher,".",conn_str,                                  execlp(launcher,launcher,".",conn_str,
                                         control_port_str,server_port_str,server,"0",0);                                          control_port_str,server_port_str,server,dname0,"-nolog",0);
                 }                  }
         } else if ( conn_to_serv == 2 ) {          } else if ( conn_to_serv == 2 ) {
                 /* special support for java */                  /* special support for java */
Line 572  char *control_port_str,*server_port_str;
Line 573  char *control_port_str,*server_port_str;
                                 control_port_str,server_port_str,server,dname);                                  control_port_str,server_port_str,server,dname);
                 else                  else
                         sprintf(cmd,                          sprintf(cmd,
 "%s -n %s \"%s %s %s %s %s %s %s >&/dev/null&\">/dev/null",  "%s -n %s \"%s %s %s %s %s %s %s %s>&/dev/null&\">/dev/null",
                                 rsh,host,launcher,localhost,conn_str,                                  rsh,host,launcher,localhost,conn_str,
                                 control_port_str,server_port_str,server,"0");                                  control_port_str,server_port_str,server,dname0,"-nolog");
                 system(cmd);                  system(cmd);
         }          }
 #endif /* VISUAL */  #endif /* VISUAL */

Legend:
Removed from v.1.16.2.1  
changed lines
  Added in v.1.17

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