support_a.c

来自「C实现的MUD,对大家基本入门网络游戏很有帮助!」· C语言 代码 · 共 70 行

C
70
字号
/* File    : support_a.c * Creator : Pinkfish@Discworld *         : Grendel@Tmi-2 * When    : 93-08-15 * * This file is part of the tmi mudlib.  Please keep this header intact. * * This protocol is used to answer a support_q request. */// Ported to ES2 mudlib by Annihilator@ES2 (06/15/95)#include <net/dns.h>#include <net/macros.h>inherit F_CLEAN_UP;void create() { seteuid(ROOT_UID); }// We received an answer answer to our 'do you support xx' request.void incoming_request(mapping info){	int idx;	if(!ACCESS_CHECK(previous_object())) return;	if (stringp(info["PORTUDP"]) && stringp(info["NAME"])) {		// don't want requests from ourself		if (info["NAME"] == Mud_name()) return ;		// if we don't have an entry for the mud, then we ping it		if (!DNS_MASTER->dns_mudp(info["NAME"]))			PING_Q->send_ping_q(info["HOSTADDRESS"], info["PORTUDP"]);		if(info["ANSWERID"] && sscanf(info["ANSWERID"], "%d", idx))			index_call(idx, info);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?