X-Git-Url: https://git.distorted.org.uk/~mdw/jog/blobdiff_plain/2ec1e6937048636ec6761c3a76c5bf9544278601..08b95ae46c249ee9652c8645ac1701165fea28de:/tx-socket.h diff --git a/tx-socket.h b/tx-socket.h index f6e4d00..b1b6f95 100644 --- a/tx-socket.h +++ b/tx-socket.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tx-socket.h,v 1.1 2002/01/25 19:34:45 mdw Exp $ + * $Id: tx-socket.h,v 1.3 2002/02/02 19:17:25 mdw Exp $ * * Socket transport * @@ -26,14 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tx-socket.h,v $ - * Revision 1.1 2002/01/25 19:34:45 mdw - * Initial revision - * - */ - #ifndef TX_SOCKET_H #define TX_SOCKET_H @@ -53,7 +45,7 @@ /*----- Functions provided ------------------------------------------------*/ -extern txport *txsock_create(const char */*file*/, const char */*config*/); +extern txport *txsock_create(const char */*file*/); extern void *txsock_fetch(void */*txv*/); extern ssize_t txsock_write(txport */*txg*/, const void */*p*/, size_t /*sz*/); @@ -62,13 +54,12 @@ extern void txsock_destroy(txport */*txg*/); #ifdef TX_LIST static const struct txfile txsock_fv[] = { { "JOGSOCK", 0 }, - { DIRVAR, "sim" }, - { 0, "/var/lib/jog/sim" }, + { 0, JOGSOCKET }, }; static txport_ops txsock_ops = { TX_LIST, "socket", txsock_fv, 0, - txsock_create, txsock_fetch, txsock_write, txsock_destroy + txsock_create, 0, txsock_fetch, txsock_write, txsock_destroy }; # undef TX_LIST # define TX_LIST &txsock_ops