?? about.c
字號(hào):
/* 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);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -