[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.28 and 1.29

version 1.28, 2001/12/25 05:28:39 version 1.29, 2001/12/25 08:59:49
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/tcpf.c,v 1.27 2001/12/25 02:39:05 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.28 2001/12/25 05:28:39 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 471  void ox_launch_generic(char *host,char *launcher,char 
Line 471  void ox_launch_generic(char *host,char *launcher,char 
 }  }
   
 #if defined(__CYGWIN__)  #if defined(__CYGWIN__)
   static void bslash2slash(char *buf)
   {
           char *p;
   
           for ( p = buf; *p; p++ )
                   if ( *p == '\\' )
                           *p = '/';
   }
   
 static int get_start_path(char *buf)  static int get_start_path(char *buf)
 {  {
         static char start_path[BUFSIZ];          static char start_path[BUFSIZ];
Line 486  static int get_start_path(char *buf)
Line 495  static int get_start_path(char *buf)
         strcpy(buf,"c:\\winnt\\system32\\start.exe");          strcpy(buf,"c:\\winnt\\system32\\start.exe");
         cygwin_conv_to_full_posix_path(buf,name);          cygwin_conv_to_full_posix_path(buf,name);
         if ( !access(name,X_OK) ) {          if ( !access(name,X_OK) ) {
                   bslash2slash(buf);
                 strcpy(start_path,buf);                  strcpy(start_path,buf);
                 return 1;                  return 1;
         }          }
Line 494  static int get_start_path(char *buf)
Line 504  static int get_start_path(char *buf)
         strcpy(buf,"c:\\windows\\command\\start.exe");          strcpy(buf,"c:\\windows\\command\\start.exe");
         cygwin_conv_to_full_posix_path(buf,name);          cygwin_conv_to_full_posix_path(buf,name);
         if ( !access(name,X_OK) ) {          if ( !access(name,X_OK) ) {
                   bslash2slash(buf);
                 strcpy(start_path,buf);                  strcpy(start_path,buf);
                 return 1;                  return 1;
         }          }
Line 516  static void get_launcher_path(char *buf)
Line 527  static void get_launcher_path(char *buf)
         get_rootdir(rootname,sizeof(rootname));          get_rootdir(rootname,sizeof(rootname));
         sprintf(name,"%s/ox_launch.exe",rootname);          sprintf(name,"%s/ox_launch.exe",rootname);
         cygwin_conv_to_full_win32_path(name,launcher_path);          cygwin_conv_to_full_win32_path(name,launcher_path);
           bslash2slash(launcher_path);
         launcher_initialized = 1;          launcher_initialized = 1;
         strcpy(buf,launcher_path);          strcpy(buf,launcher_path);
 }  }
Line 575  void spawn_server(char *host,char *launcher,char *serv
Line 587  void spawn_server(char *host,char *launcher,char *serv
 //      _spawnv(_P_NOWAIT,"d:\\home\\noro\\engine2000\\debug\\engine.exe",av);  //      _spawnv(_P_NOWAIT,"d:\\home\\noro\\engine2000\\debug\\engine.exe",av);
 //      printf("ox_launch 127.0.0.1 %s %s %s %s 0\n",conn_str,control_port_str,server_port_str,server);  //      printf("ox_launch 127.0.0.1 %s %s %s %s 0\n",conn_str,control_port_str,server_port_str,server);
 #else  #else
         get_start_path(win_start);  
         if ( use_unix || !host ) {          if ( use_unix || !host ) {
                 if ( !fork() ) {  
                         setpgid(0,getpid());  
 #if defined(__CYGWIN__)  #if defined(__CYGWIN__)
                         if ( dname && get_start_path(win_start) )                  get_launcher_path(win_launcher);
                         {                  if ( dname && get_start_path(win_start) ) {
                                 get_launcher_path(win_launcher);                          sprintf(cmd,"%s %s %s %s %s %s %s 1",
                                 execlp(win_start,"start",win_launcher,                                  win_start,win_launcher,use_unix?".":"127.1",conn_str,
                                         use_unix?".":"127.1",conn_str,                                  control_port_str,server_port_str,server);
                                         control_port_str,server_port_str,server,"1",0);                          system(cmd);
                   } else {
                           if ( !fork() ) {
                                   setpgid(0,getpid());
                                   execlp(launcher,launcher,use_unix?".":"127.1",conn_str,
                                           control_port_str,server_port_str,server,dname0,"-nolog",0);
                         }                          }
                   }
 #else  #else
                   if ( !fork() ) {
                           setpgid(0,getpid());
                         if ( dname )                          if ( dname )
                                 execlp("xterm","xterm","-name",OX_XTERM,"-T","ox_launch:local","-display",dname,                                  execlp("xterm","xterm","-name",OX_XTERM,"-T","ox_launch:local","-display",dname,
                                         "-geometry","60x10","-e",launcher,use_unix?".":"127.1",conn_str,                                          "-geometry","60x10","-e",launcher,use_unix?".":"127.1",conn_str,
                                         control_port_str,server_port_str,server,dname,0);                                          control_port_str,server_port_str,server,dname,0);
 #endif  
                         else                          else
                                 execlp(launcher,launcher,use_unix?".":"127.1",conn_str,                                  execlp(launcher,launcher,use_unix?".":"127.1",conn_str,
                                         control_port_str,server_port_str,server,dname0,"-nolog",0);                                          control_port_str,server_port_str,server,dname0,"-nolog",0);
                 }                  }
   #endif
         } else if ( conn_to_serv == 2 ) {          } else if ( conn_to_serv == 2 ) {
                 /* special support for java */                  /* special support for java */
                 if ( dname )                  if ( dname )

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

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