http_parse_status.h
来自「AMLOGIC DPF source code」· C头文件 代码 · 共 42 行
H
42 行
/*******************************************************************
*
* Copyright C 2004 by Amlogic, Inc. All Rights Reserved.
*
* Description: Parse the HTTP status line
*
* Author: Eric Knudstrup
* Created: Wed Dec 29 18:10:16 2004
*
*******************************************************************/
#ifndef HTTP_PARSE_STATUS_H
#define HTTP_PARSE_STATUS_H
/*;emacs generated header for file http_parse_status.c. Global function declarations only. */
/* Just grab everything up to the end of line '\n' */
extern HTTPParseStatus
http_parse_status_message(HTTPParser *parser);
/* "200" */
extern HTTPParseStatus
http_parse_status_code(HTTPParser *parser);
/* "1.0" */
extern HTTPParseStatus
http_parse_status_ver(HTTPParser *parser);
/* "/" */
extern HTTPParseStatus
http_parse_status_slash(HTTPParser *parser);
/* "HTTP" */
extern HTTPParseStatus
http_parse_status_proto(HTTPParser *parser);
/*;end emacs generated header for file http_parse_status.c. Global function declarations only. */
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?