diff --git a/src/rsrv/Makefile.Vx b/src/rsrv/Makefile.Vx index c7f4c0432..53fe28e00 100644 --- a/src/rsrv/Makefile.Vx +++ b/src/rsrv/Makefile.Vx @@ -5,13 +5,11 @@ USR_INCLUDES = -I../../ca USR_CFLAGS = -UUNIX SRCS.c = ../caserverio.c ../caservertask.c ../camsgtask.c ../camessage.c \ - ../rsrv_init.c ../cast_server.c ../online_notify.c ../globalsource.c \ - ../client_stat_summary.c + ../rsrv_init.c ../cast_server.c ../online_notify.c ../globalsource.c OBJS = \ caserverio.o caservertask.o camsgtask.o camessage.o \ - rsrv_init.o cast_server.o online_notify.o globalsource.o \ - client_stat_summary.o + rsrv_init.o cast_server.o online_notify.o globalsource.o PROD = rsrvLib diff --git a/src/rsrv/client_stat_summary.c b/src/rsrv/client_stat_summary.c deleted file mode 100644 index 2a554bdc8..000000000 --- a/src/rsrv/client_stat_summary.c +++ /dev/null @@ -1,27 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -void client_stat_summary(void) -{ - struct client *pclient; - - LOCK_CLIENTQ; - pclient = (struct client *) ellFirst(&clientQ); - while (pclient) { - printf( "Client Name=%s, Client Host=%s Number channels %d\n", - pclient->pUserName, - pclient->pHostName, - ellCount(&pclient->addrq)); - pclient = (struct client *) ellNext(&pclient->node); - } - UNLOCK_CLIENTQ; -}