version 1.12, 2003/05/07 04:00:30 |
version 1.16, 2016/04/01 18:12:39 |
|
|
/* -*- mode: C -*- */ |
/* -*- mode: C -*- */ |
/* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.11 2001/01/10 06:54:36 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.15 2005/10/12 10:37:24 takayama Exp $ */ |
|
|
#include <stdio.h> |
#include <stdio.h> |
#include <stdlib.h> |
#include <stdlib.h> |
Line 182 int main(int argc, char *argv[]) |
|
Line 182 int main(int argc, char *argv[]) |
|
delay = atoi(optarg); |
delay = atoi(optarg); |
break; |
break; |
default: |
default: |
|
; |
} |
} |
} |
} |
argc -= optind; |
argc -= optind; |
Line 192 int main(int argc, char *argv[]) |
|
Line 193 int main(int argc, char *argv[]) |
|
} |
} |
|
|
if (strlen(remote_host) == 0) { |
if (strlen(remote_host) == 0) { |
pipe_read_info(&remote_host, &port, &password); |
int porti; |
|
pipe_read_info(&remote_host, &porti, &password); |
|
port = (short)porti; |
port_s = malloc(32); |
port_s = malloc(32); |
sprintf(port_s, "%d", port); |
sprintf(port_s, "%d", port); |
} |
} |