From 74c93e64254dddb35f08ec54ee401fc85d3f8cb7 Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Mon, 20 Mar 1995 09:46:24 +0000 Subject: [PATCH] Added osi support. --- server/Makefile | 6 ++++-- server/statserv.c | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/server/Makefile b/server/Makefile index 54f578d..5e82c42 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,7 +1,7 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.11 1995-03-16 13:28:59 quinn Exp $ +# $Id: Makefile,v 1.12 1995-03-20 09:46:24 quinn Exp $ SHELL=/bin/sh INCLUDE=-I../include -I. -I../asn -I../odr -I../yazlib -I../../egate/include\ @@ -11,7 +11,9 @@ LIBINCLUDE=-L$(LIBDIR) #CFLAGS=-Wall -pedantic -g DEFS=$(INCLUDE) LIB=$(LIBDIR)/libserver.a -LIBS=$(LIBDIR)/libserver.a $(LIBDIR)/libasn.a $(LIBDIR)/libodr.a $(LIBDIR)/libcomstack.a ../../alex/lib/util.a ../../egate/lib/util.a +LIBS=$(LIBDIR)/libserver.a $(LIBDIR)/libasn.a $(LIBDIR)/libodr.a \ +$(LIBDIR)/libcomstack.a ../../alex/lib/util.a ../../egate/lib/util.a\ +../../xtimosi/src/libmosi.a ../yazlib/rfct.o ../yazlib/makensap.o PO = eventl.o seshigh.o statserv.o CPP=cc -E PROG=ztest diff --git a/server/statserv.c b/server/statserv.c index d84065f..0531798 100644 --- a/server/statserv.c +++ b/server/statserv.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: statserv.c,v $ - * Revision 1.7 1995-03-16 13:29:04 quinn + * Revision 1.8 1995-03-20 09:46:26 quinn + * Added osi support. + * + * Revision 1.7 1995/03/16 13:29:04 quinn * Partitioned server. * * Revision 1.6 1995/03/15 15:18:52 quinn @@ -128,7 +131,6 @@ void add_listener(char *where) } type = tcpip_type; } -#if 0 else if (!strcmp(mode, "osi")) { if (!(ap = mosi_strtoaddr(addr))) @@ -138,7 +140,6 @@ void add_listener(char *where) } type = mosi_type; } -#endif else { fprintf(stderr, "You must specify either 'osi:' or 'tcp:'.\n"); -- 1.7.10.4