/* NETWOX Network toolbox Copyright(c) 1999-2006 Laurent Constantin ----- Main server : http://www.laurentconstantin.com/ Backup servers : http://go.to/laurentconstantin/ http://laurentconstantin.est-la.com/ http://laurentconstantin.free.fr/ http://membres.lycos.fr/lauconstantin/ [my current email address is on the web servers] ----- This file is part of Netwox. Netwox is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Netwox 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 (http://www.gnu.org/). ------------------------------------------------------------------------ */ /*-------------------------------------------------------------*/ #include "../netwox.h" /*-------------------------------------------------------------*/ netwib_conststring t000184_description[] = { NETWOX_DESC_relay, "", NETWOX_DESC_server, NETWOX_DESC_relay_para, NETWOX_DESC_toolpriv_none, NULL }; netwox_toolarg t000184_args[] = { NETWOX_SOCK_ARG_UDP_SER, NETWOX_RELAY_ARG_IP, NETWOX_TOOLARG_END }; netwox_tooltreenodetype t000184_nodes[] = { NETWOX_TOOLTREENODETYPE_SERVER_UDP_GENERIC, NETWOX_TOOLTREENODETYPE_CLIENT_UDP_GENERIC, NETWOX_TOOLTREENODETYPE_END }; netwox_tool_info t000184_info = { "UDP relay", t000184_description, NULL, t000184_args, t000184_nodes, }; /*-------------------------------------------------------------*/ netwib_err t000184_core(int argc, char *argv[]) { netwox_arg *parg; netwox_sockinfo sockinfo; netwib_io *plocalio; netwox_relay relay; /* obtain parameters */ netwib_er(netwox_arg_init(argc, argv, &t000184_info, &parg)); netwib_er(netwox_sockinfo_init_arg_udp_ser(parg, &sockinfo)); netwib_er(netwox_sock_init(&sockinfo, &plocalio)); netwib_er(netwox_relay_init_arg(parg, NETWOX_SOCKTYPE_UDP_SER, &relay)); /* main loop */ netwib_er(netwox_relay_loop(&relay, plocalio)); /* close */ netwib_er(netwox_relay_close(&relay)); netwib_er(netwib_io_close(&plocalio)); netwib_er(netwox_sockinfo_close(&sockinfo)); netwib_er(netwox_arg_close(&parg)); return(NETWIB_ERR_OK); }