/* * Copyright (c) 1996, 1997, 1999 The University of Utah and * the Computer Systems Laboratory at the University of Utah (CSL). * * This file is part of Flick, the Flexible IDL Compiler Kit. * * Flick is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Flick is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Flick; see the file COPYING. If not, write to * the Free Software Foundation, 59 Temple Place #330, Boston, MA 02111, USA. */ #include #include #include #include #ifndef RPCGEN #include "complex-client.h" #else #include "complex.h" #endif int main(int argc, char **argv) { CLIENT tmp, *c; FLICK_SERVER_LOCATION s; int i; int count, len; people buf; char name[50]; c = &tmp; for (i = 0; i < 49; i++) name[i] = 'a'; name[49] = 0; if (argc != 4) { printf("Usage: %s <# of calls> <# of elements in array>\n",argv[0]); exit(1); } s.server_name = argv[1]; s.prog_num = PROGNAME; s.vers_num = VERSNAME; create_client(c, s); count = atol(argv[2]); len = atol(argv[3]); buf.people_len = len; buf.people_val = (person *)calloc(sizeof(person), len); for (i = 0; i < len; i++) buf.people_val[i].name = name; for (i = 0; i < count; i++) if (!op_2(&buf, c)) { fprintf(stderr, "Failed to receive _ANY_ result\n"); exit(1); } return 0; } /* End of file. */