=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/oxmisc2.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- OpenXM/src/kan96xx/plugin/oxmisc2.c 2000/12/03 07:29:39 1.7 +++ OpenXM/src/kan96xx/plugin/oxmisc2.c 2000/12/03 08:19:55 1.8 @@ -1,8 +1,9 @@ -/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.6 2000/03/20 01:53:47 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.7 2000/12/03 07:29:39 takayama Exp $ */ #include #include "ox_kan.h" #include "oxmisc2.h" /* This file requires sm1 object description. */ #include "cmo.h" + extern FILE *MyErrorOut; #define SET_MYERROROUT { if (MyErrorOut == NULL) MyErrorOut=stdout; } /* It is also defined in oxmisc.c */ @@ -1042,4 +1043,117 @@ struct object KoxPushCMO(struct object client,struct o /* synchronize cc1 and client. */ oxClientToObject(cc1,client); return(ob); +} + +/* ------------- TODO ----------------- */ +oxclientp oxCreateControl_RFC_101(int fdstream,int portStream, + int ipmask,char *pass); +struct object KoxCreateControl_RFC_101(struct object peer,struct object ipmask,struct object pass) +{ + struct object rob; + oxclientp client; + int fdStream, portStream; + int i; + struct object ob1; + rob.tag = Snull; + if (peer.tag != Sarray) { + errorOxmisc2("KoxCreateControl_RFC_101(): The first argument must be an array [fdStream, portStream]"); + return(rob); + } + if (getoaSize(peer) != 2 ) { + errorOxmisc2("KoxCreateControl_RFC_101(): The first argument must be an array [fdStream, portStream] of size 2."); + return(rob); + } + for (i=0; idatafp2 = fp2open(fdStream); + if (client->datafp2 == NULL) { + fprintf(stderr,"oxCreateControl_RFC_101(): fp2open(fd) failed.\n"); + return(NULL); + } + client->dataport = portStream; + client->controlport = -1; + client->controlfd = -1; + client->id = clnum; clnum++; + client->type = CLIENT_SOCKET; /* socket */ + client->engineByteOrder = engineByteOrder; + client->controlByteOrder = -1; + return(client); }