ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/cmds/wiz/ping.c

HOME :: cmds :: wiz :: ping.c
/*  ping.c

    Copyright (C) 1994-2000 Annihilator 

    This program is a part of ES2 mudlib. Permission is granted to use,
    modify, copy or distribute this program provided this copyright notice
    remains intact and subject to the restriction that this program MAY
    NOT be used in any way for monetary gain.

    Details of terms and conditions is available in the Copyright.ES2 file.
    If you don't receive this file along with this program, write to the
    primary author of ES2 mudlib: Annihilator 
*/

#include 
#include 

inherit F_CLEAN_UP;

private void create() { seteuid(getuid()); }

int main(object me, string arg)
{
    string addr;
    int port;

    SECURED_WIZARD_COMMAND;

    if( !arg || sscanf(arg, "%s %d", addr, port)!=2 )
return notify_fail("指令格式:ping  \n");

    INTERMUD_SERVICE("ping")->send_request(addr, port);
    write("Ok.\n");
    return 1;
}

int help(object me)
{
    write(@HELP
指令格式:ping  

這個指令可以用來測試遠端的 MUD 是否執行中。

請注意第二個參數的埠號是 Intermud 的 UDP 埠號,不是 MUD 連線登入的
埠號。如果對方是 ES2-based 的 MUD 而你不知道他們的 UDP 埠,可以試
試看 ES2 mudlib 的預設值,也就是登入的埠號 +4。

相關說明:
mudlist
HELP
    );
    return 1;
}
HOME :: cmds :: wiz :: ping.c