rtsp_parse_public.h

来自「AMLOGIC DPF source code」· C头文件 代码 · 共 44 行

H
44
字号
/*******************************************************************
 * 
 *  Copyright C 2004 by Amlogic, Inc. All Rights Reserved.
 *
 *  Description: RTSP Public header parsing
 *
 *  Author: 
 * Created: Mon Oct 25 18:20:08 2004, Eric Knudstrup
 *
 *******************************************************************/

#ifndef RTSP_PARSE_PUBLIC_H
#define RTSP_PARSE_PUBLIC_H

#include "rtsp_methods.h"

/*;emacs generated header for file rtsp_parse_public.c. Global function declarations only. */
/**
 * Retrieve the list of methods allowed.
 * @param IN response HTTP response from which to get allowed method mask.
 * @param OUT methods Mask of allowed methods.
 *
 * @returns TRUE if the Public header field exists in response.
 */
extern int
rtsp_public_methods(HTTPInputMessage_t *response, RTSPMethodMask * methods);

/**
 * Parse the RTSP 1.0 Public header field.
 */
extern HTTPParseStatus
rtsp_parse_public(HTTPParser *parser, HTTPFieldValue *base);

/**
 * RTSP Public header field Initialization callback.
 */
extern HTTPParseStatus
rtsp_parse_init_public(HTTPParser *parser, HTTPFieldParser *hdr_parser);


/*;end emacs generated header for file rtsp_parse_public.c. Global function declarations only. */

#endif

⌨️ 快捷键说明

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