[BACK]Return to oxc.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / oxc

Diff for /OpenXM/src/oxc/oxc.c between version 1.14 and 1.15

version 1.14, 2005/07/28 07:22:33 version 1.15, 2005/10/12 10:37:24
Line 1 
Line 1 
 /* -*- mode: C -*- */  /* -*- mode: C -*- */
 /* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.13 2004/12/01 17:42:46 ohara Exp $ */  /* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.14 2005/07/28 07:22:33 ohara Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 127  static char **makeargs(char **oldargs)
Line 127  static char **makeargs(char **oldargs)
     return newargs;      return newargs;
 }  }
   
   static int basic0[] =  {
       CMO_ERROR2,
       CMO_NULL,
       CMO_INT32,
       CMO_DATUM,
       CMO_STRING,
       CMO_MATHCAP,
       CMO_LIST,
       0
   };
   
 /* We assume that data has the following format:  /* We assume that data has the following format:
    LENGTH hostname '\0' port '\0' password '\0'     LENGTH hostname '\0' port '\0' password '\0'
    where LENGTH is an integer with network byte order and its value     where LENGTH is an integer with network byte order and its value
Line 198  int main(int argc, char *argv[])
Line 209  int main(int argc, char *argv[])
     usleep(delay);      usleep(delay);
     if ((oxfp = connection()) != NULL) {      if ((oxfp = connection()) != NULL) {
         ox_printf("oxc: oxfp = %p, fd = %d\n", oxfp, oxfp->fd);          ox_printf("oxc: oxfp = %p, fd = %d\n", oxfp, oxfp->fd);
         mathcap_init("v2000.10.06", "oxc");          mathcap_init(20001006, "v2000.10.06", "oxc", basic0, NULL);
         sm(oxfp);          sm(oxfp);
     }      }
     return 0;      return 0;

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

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