Added the Telnet server to the examples supported by cc65.
This commit is contained in:
parent
baae42b2f8
commit
4af9f534cc
5 changed files with 11 additions and 0 deletions
1
examples/telnet-server/Makefile.apple2enh.defines
Normal file
1
examples/telnet-server/Makefile.apple2enh.defines
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS
|
1
examples/telnet-server/Makefile.atari.defines
Normal file
1
examples/telnet-server/Makefile.atari.defines
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DEFINES = WITH_CLIENT,WITH_DNS,CONNECTIONS=2,MTU_SIZE=500
|
1
examples/telnet-server/Makefile.c128.defines
Normal file
1
examples/telnet-server/Makefile.c128.defines
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS,CONNECTIONS=2,MTU_SIZE=500
|
1
examples/telnet-server/Makefile.c64.defines
Normal file
1
examples/telnet-server/Makefile.c64.defines
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS
|
|
@ -49,6 +49,12 @@ PROCESS_THREAD(shell_init_process, ev, data)
|
||||||
{
|
{
|
||||||
PROCESS_BEGIN();
|
PROCESS_BEGIN();
|
||||||
|
|
||||||
|
#ifdef __CC65__
|
||||||
|
shell_ps_init();
|
||||||
|
shell_netstat_init();
|
||||||
|
shell_wget_init();
|
||||||
|
shell_memdebug_init();
|
||||||
|
#else /* __CC65__ */
|
||||||
shell_file_init();
|
shell_file_init();
|
||||||
shell_httpd_init();
|
shell_httpd_init();
|
||||||
shell_irc_init();
|
shell_irc_init();
|
||||||
|
@ -57,6 +63,7 @@ PROCESS_THREAD(shell_init_process, ev, data)
|
||||||
shell_text_init();
|
shell_text_init();
|
||||||
shell_time_init();
|
shell_time_init();
|
||||||
shell_wget_init();
|
shell_wget_init();
|
||||||
|
#endif /* __CC65__ */
|
||||||
|
|
||||||
PROCESS_END();
|
PROCESS_END();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue