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

📄 http.h

📁 elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, elinks也是gentoo安装过程中默认使用的浏览器, 这是elinks源代码
💻 H
字号:
#ifndef EL__PROTOCOL_HTTP_HTTP_H#define EL__PROTOCOL_HTTP_HTTP_H#include "main/module.h"#include "protocol/protocol.h"struct connection;struct http_connection_info;struct read_buffer;struct socket;extern struct module http_protocol_module;extern protocol_handler_T http_protocol_handler;extern protocol_handler_T proxy_protocol_handler;#ifdef CONFIG_SSL#define https_protocol_handler http_protocol_handler#else#define https_protocol_handler NULL#endifstruct http_connection_info *init_http_connection_info(struct connection *conn, int major, int minor, int close);void http_got_header(struct socket *, struct read_buffer *);unsigned char *subst_user_agent(unsigned char *fmt, unsigned char *version,				unsigned char *sysname, unsigned char *termsize);#endif

⌨️ 快捷键说明

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