version 1.5, 2003/02/04 20:43:55 |
version 1.6, 2003/09/15 09:31:42 |
|
|
/* -*- mode: C -*- */ |
/* -*- mode: C -*- */ |
/* $OpenXM: OpenXM/src/ox_toolkit/zclient.c,v 1.4 2003/01/13 12:03:13 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_toolkit/zclient.c,v 1.5 2003/02/04 20:43:55 ohara Exp $ */ |
|
|
/* A sample implementation of an OpenXM client with OpenXM C library */ |
/* A sample implementation of an OpenXM client with OpenXM C library */ |
|
|
|
|
#include <string.h> |
#include <string.h> |
#include "ox_toolkit.h" |
#include "ox_toolkit.h" |
|
|
|
int oxc_start(char *remote_host, int port, char *passwd); |
|
|
static OXFILE *connection(int listened, char *passwd) |
static OXFILE *connection(int listened, char *passwd) |
{ |
{ |
OXFILE *oxfp = oxf_connect_passive(listened); |
OXFILE *oxfp = oxf_connect_passive(listened); |
Line 22 static OXFILE *connection(int listened, char *passwd) |
|
Line 24 static OXFILE *connection(int listened, char *passwd) |
|
|
|
OXFILE *open_server(char *remote_host) |
OXFILE *open_server(char *remote_host) |
{ |
{ |
short port; |
int port; |
int listen; |
int listen; |
char *passwd = generate_otp(); |
char *passwd = generate_otp(); |
|
|