From 507901d1ce2fee1278cdf2e7239b3087fb459ce6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 2 Jun 2002 21:25:50 +0000 Subject: [PATCH] Option to start a given number of connections on tst3 --- zoom/zoomtst3.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/zoom/zoomtst3.c b/zoom/zoomtst3.c index 0502861..5695518 100644 --- a/zoom/zoomtst3.c +++ b/zoom/zoomtst3.c @@ -1,5 +1,5 @@ /* - * $Id: zoomtst3.c,v 1.6 2002-02-20 14:40:42 adam Exp $ + * $Id: zoomtst3.c,v 1.7 2002-06-02 21:25:50 adam Exp $ * * Asynchronous multi-target client doing search and piggyback retrieval */ @@ -15,6 +15,7 @@ int main(int argc, char **argv) { int i; + int same_target = 0; int no = argc-2; ZOOM_connection z[500]; /* allow at most 500 connections */ ZOOM_resultset r[500]; /* and result sets .. */ @@ -26,6 +27,12 @@ int main(int argc, char **argv) *argv); exit (1); } + if (argc == 4 && isdigit(argv[1][0]) && !strchr(argv[1],'.')) + { + no = atoi(argv[1]); + same_target = 1; + } + if (no > 500) no = 500; @@ -46,7 +53,10 @@ int main(int argc, char **argv) z[i] = ZOOM_connection_create (o); /* connect and init */ - ZOOM_connection_connect (z[i], argv[1+i], 0); + if (same_target) + ZOOM_connection_connect (z[i], argv[2], 0); + else + ZOOM_connection_connect (z[i], argv[1+i], 0); } /* search all */ for (i = 0; i