1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
* dmachinemon / a distributed machine monitor by dancer.
* Copyright (C) 2001 Junichi Uekawa
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* super proxy program, receives the port number to listen on, and the command line parameter.
*/
/*
* 2001 Oct 2
* $Id: superproxy.c,v 1.3 2001/11/07 07:35:06 dancer Exp $
* $Log: superproxy.c,v $
* Revision 1.3 2001/11/07 07:35:06 dancer
* changed structure name to use dm_
*
* Revision 1.2 2001/11/07 06:32:42 dancer
* library interface has been cleaned up, to prepend all functions with
* "dm_" prefix.
*
* Revision 1.1 2001/10/02 12:14:56 dancer
* super proxy program, for use with many apps, I suppose.
*
*
*/
#include <stdio.h>
#include <dmachinemon/dmachinemon.h>
static char * commandline = NULL ;
static int
handle_clients(void * data)
{ /* access from clients. */
int t = ((struct dm_handle_incoming_params*)data)->t;
FILE* fout = (t!=-1)?fdopen(t, "w"):NULL;
FILE* fin = popen (commandline, "r");
int i;
if (fin == NULL || fout == NULL)
{
fprintf(stderr, "wow\n");
exit (1);
}
while ((i = fgetc(fin))!=EOF)
{
fputc (i, fout);
}
fclose(fin);
fclose(fout);
return 0;
}
int main (int ac, char ** av)
{
commandline = av[2];
dm_tcp_host_setup("superproxy", av[1],
(void * )handle_clients);
return 0;
}
|