⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.c

📁 一个很有名的浏览器
💻 C
字号:
/* Pseudo about: protocol implementation *//* $Id: about.c,v 1.8 2004/08/14 05:59:17 jonas Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "elinks.h"#include "cache/cache.h"#include "protocol/about.h"#include "protocol/protocol.h"#include "sched/connection.h"#include "util/string.h"voidabout_protocol_handler(struct connection *conn){	struct cache_entry *cached = get_cache_entry(conn->uri);	/* Only do this the first time */	if (cached && !cached->content_type) {		cached->incomplete = 0;		/* Set content to known type */		mem_free_set(&cached->content_type, stracpy("text/html"));	}	conn->cached = cached;	abort_conn_with_state(conn, S_OK);}

⌨️ 快捷键说明

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