mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
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:
parent
37d6382770
commit
29f2647a3e
3 changed files with 24 additions and 0 deletions
|
@ -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>
|
||||
|
|
13
rosapps/applications/sysutils/telnetd/telnetd.rbuild
Normal file
13
rosapps/applications/sysutils/telnetd/telnetd.rbuild
Normal 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>
|
7
rosapps/applications/sysutils/telnetd/telnetd.rc
Normal file
7
rosapps/applications/sysutils/telnetd/telnetd.rc
Normal 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>
|
Loading…
Reference in a new issue