[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.20 and 1.23

version 1.20, 2000/11/15 08:47:20 version 1.23, 2000/12/16 07:12:01
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.19 2000/11/15 01:20:27 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.22 2000/12/05 01:24:55 noro Exp $
 */  */
 #if INET  
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include "com.h"  #include "com.h"
Line 501  char *control_port_str,*server_port_str;
Line 500  char *control_port_str,*server_port_str;
         char *av[BUFSIZ];          char *av[BUFSIZ];
   
         dname0 = (char *)getenv("DISPLAY");          dname0 = (char *)getenv("DISPLAY");
           if ( !dname0 )
                   dname0 = "0";
         dname = use_x ? dname0 : 0;          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");
Line 1141  Q *rp;
Line 1142  Q *rp;
         valid_mctab_index(index);          valid_mctab_index(index);
         s = m_c_tab[index].m;          s = m_c_tab[index].m;
         ox_send_cmd(s,SM_shutdown);          ox_send_cmd(s,SM_shutdown);
 #if defined(VISUAL)  
         Sleep(1000);  
 #endif  
         free_iofp(s);          free_iofp(s);
 #if !defined(VISUAL)  #if !defined(VISUAL)
         s = m_c_tab[index].c;          s = m_c_tab[index].c;
Line 1170  Q *rp;
Line 1168  Q *rp;
         ox_send_cmd(m_c_tab[index].c,ui);          ox_send_cmd(m_c_tab[index].c,ui);
         *rp = 0;          *rp = 0;
 }  }
 #endif  
   
 void shutdown_all() {  void shutdown_all() {
         int s;          int s;
Line 1184  void shutdown_all() {
Line 1181  void shutdown_all() {
                         continue;                          continue;
                 s = m_c_tab[index].m;                  s = m_c_tab[index].m;
                 ox_send_cmd(s,SM_shutdown);                  ox_send_cmd(s,SM_shutdown);
   #if defined(VISUAL)
           Sleep(1000);
   #endif
                 free_iofp(s);                  free_iofp(s);
 #if !defined(VISUAL)  #if !defined(VISUAL)
                 s = m_c_tab[index].c;                  s = m_c_tab[index].c;

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.23

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