tcp.c
来自「C实现的MUD,对大家基本入门网络游戏很有帮助!」· C语言 代码 · 共 41 行
C
41 行
/* File : tcp.c.c * Creator : Grendel@Tmi-2 * When : 93-08-15 * * This file is part of the tmi mudlib. Please keep this header intact. * * This file is used to let other muds know what tcp services we support. */inherit F_CLEAN_UP;/* The tcp file is used to allow other muds to find out which tcp services * are supported. */int support_tcp_mail() { return 1; }int support_tcp_tell() { return 1; }int support_tcp_finger() { return 1; }int support_tcp_interwiz() { return 1; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?