Enable the hackish telnet daemon for network testing.

Please forgive this commit as this does cause warnings.
I will be cleaning this up, time premitting over the next
few weeks.


svn path=/trunk/; revision=39376
This commit is contained in:
Steven Edwards 2009-02-04 04:55:01 +00:00
parent 37d6382770
commit 29f2647a3e
3 changed files with 24 additions and 0 deletions

View file

@ -52,6 +52,10 @@
<xi:include href="tcat/tcat.rbuild" />
</directory>
<directory name="telnetd">
<xi:include href="telnetd/telnetd.rbuild" />
</directory>
<directory name="utils">
<xi:include href="utils/utils.rbuild" />
</directory>

View file

@ -0,0 +1,13 @@
<module name="telnetd" type="win32cui" installbase="system32" installname="telnetd.exe" allowwarnings="true" unicode="yes">
<include base="reactos"></include>
<include base="telnetd">..</include>
<library>ntdll</library>
<library>kernel32</library>
<library>advapi32</library>
<library>ws2_32</library>
<file>telnetd.c</file>
<file>serviceentry.c</file>
<file>telnetd.rc</file>
</module>

View file

@ -0,0 +1,7 @@
/* $Id$ */
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Simple Telnet Deamon\0"
#define REACTOS_STR_INTERNAL_NAME "telnetd\0"
#define REACTOS_STR_ORIGINAL_FILENAME "telnetd.exe\0"
#define REACTOS_STR_ORIGINAL_COPYRIGHT "fred.van.lieshout 'at' zonnet.nl\0"
#include <reactos/version.rc>