svn add/svn rm to actually move tcp/udpsvd...
This commit is contained in:
parent
4ee7cd4f6f
commit
4866e905d7
@ -1,20 +0,0 @@
|
||||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see scripts/kbuild/config-language.txt.
|
||||
#
|
||||
|
||||
menu "ipsvd Utilities"
|
||||
|
||||
config TCPSVD
|
||||
bool "tcpsvd"
|
||||
default n
|
||||
help
|
||||
tcpsvd listens on a tcp port and runs a program for each new connection
|
||||
|
||||
config UDPSVD
|
||||
bool "udpsvd"
|
||||
default n
|
||||
help
|
||||
udpsvd listens on a udp port and runs a program for each new connection
|
||||
|
||||
endmenu
|
@ -1,9 +0,0 @@
|
||||
# Makefile for busybox
|
||||
#
|
||||
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
||||
#
|
||||
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
||||
|
||||
lib-y:=
|
||||
lib-$(CONFIG_TCPSVD) += tcpudp.o ipsvd_perhost.o
|
||||
lib-$(CONFIG_UDPSVD) += tcpudp.o ipsvd_perhost.o
|
@ -7,7 +7,7 @@
|
||||
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
|
||||
/* Based on ipsvd ipsvd-0.12.1. This tcpsvd accepts all options
|
||||
/* Based on ipsvd-0.12.1. This tcpsvd accepts all options
|
||||
* which are supported by one from ipsvd-0.12.1, but not all are
|
||||
* functional. See help text at the end of this file for details.
|
||||
*
|
||||
@ -33,7 +33,8 @@
|
||||
#include <linux/netfilter_ipv4.h> /* wants <limits.h> */
|
||||
|
||||
#include "libbb.h"
|
||||
#include "ipsvd_perhost.h"
|
||||
// TODO: move into this file:
|
||||
#include "tcpudp_perhost.h"
|
||||
|
||||
#ifdef SSLSVD
|
||||
#include "matrixSsl.h"
|
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
#include "libbb.h"
|
||||
#include "ipsvd_perhost.h"
|
||||
#include "tcpudp_perhost.h"
|
||||
|
||||
static struct hcc *cc;
|
||||
static unsigned cclen;
|
Loading…
Reference in New Issue
Block a user