version 1.1, 2000/10/13 06:05:12 |
version 1.5, 2000/12/01 07:34:48 |
|
|
/* -*- mode: C -*- */ |
/* -*- mode: C -*- */ |
/* $OpenXM$ */ |
/* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.4 2000/11/28 04:02:56 ohara Exp $ */ |
|
|
#include <stdio.h> |
#include <stdio.h> |
#include <stdlib.h> |
#include <stdlib.h> |
Line 45 OXFILE *connection() |
|
Line 45 OXFILE *connection() |
|
return oxfp; |
return oxfp; |
} |
} |
|
|
|
/* xterm, kterm, rxvt, gnome-terminal, ... */ |
|
static char *xterminal() |
|
{ |
|
char *e = getenv("OpenXM_XTERM"); |
|
return (e != NULL)? e: "xterm"; |
|
} |
|
|
|
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: |
|
LENGTH hostname '\0' port '\0' password '\0' |
|
where LENGTH is an integer with network byte order and its value |
|
equals to the sum of the length of three data above. |
|
*/ |
|
|
|
void pipe_read_info(char **hostname, int *port, char **password); |
|
|
int main(int argc, char *argv[]) |
int main(int argc, char *argv[]) |
{ |
{ |
OXFILE *oxfp; |
OXFILE *oxfp; |
|
char *port_s = ""; |
|
char *xterm = xterminal(); |
|
char *myname = argv[0]; |
|
int oxlog = 0; |
int c; |
int c; |
while ((c = getopt(argc, argv, "c:p:h:")) != -1) { |
|
|
while ((c = getopt(argc, argv, "c:p:h:x")) != -1) { |
switch(c) { |
switch(c) { |
case 'h': |
case 'h': |
remote_host = optarg; |
remote_host = optarg; |
break; |
break; |
case 'c': |
case 'c': |
password = optarg; |
password = optarg; |
|
|
break; |
break; |
case 'p': |
case 'p': |
port = atoi(optarg); |
port = atoi(optarg); |
|
port_s = optarg; |
break; |
break; |
|
case 'x': |
|
if (getenv("DISPLAY") != NULL) { |
|
oxlog = 1; |
|
} |
|
break; |
default: |
default: |
} |
} |
} |
} |
argc -= optind; |
argc -= optind; |
argv += optind; |
argv += optind; |
|
|
|
if (strlen(remote_host) == 0) { |
|
pipe_read_info(&remote_host, &port, &password); |
|
port_s = malloc(32); |
|
sprintf(port_s, "%d", port); |
|
} |
|
if (oxlog) { |
|
execlp(xterm, xterm, "-e", myname, |
|
"-h", remote_host, "-p", port_s, "-c", password); |
|
} |
|
|
fprintf(stderr, "start connection!\n"); |
fprintf(stderr, "start connection!\n"); |
if (strlen(remote_host) == 0 || strlen(password) == 0 || port == 0) { |
if ((oxfp = connection()) == NULL) { |
fprintf(stderr, "oxc: invalid arguments.\n"); |
|
fprintf(stderr, "usage: oxc -p port -h host -c password.\n"); |
|
}else if ((oxfp = connection()) == NULL) { |
|
fprintf(stderr, "oxc: cannot connect.\n"); |
fprintf(stderr, "oxc: cannot connect.\n"); |
}else { |
}else { |
fprintf(stderr, "oxc: oxfp = %p, fd = %d\n", oxfp, oxfp->fd); |
fprintf(stderr, "oxc: oxfp = %p, fd = %d\n", oxfp, oxfp->fd); |
mathcap_sysinfo_set(20001006, "v2000.10.06", "oxc"); |
mathcap_init(20001006, "v2000.10.06", "oxc", basic0, NULL); |
sm(oxfp); |
sm(oxfp); |
} |
} |
return 0; |
return 0; |