httchunk.h

来自「www工具包」· C头文件 代码 · 共 60 行

H
60
字号
/*  					W3C Sample Code Library libwww Chunked Transfer Encoding and Decoding!  Chunked Transfer Encoding and Decoding!*//***	(c) COPYRIGHT MIT 1995.**	Please first read the full copyright statement in the file COPYRIGH.*//*Chunked transfer encoding and decoding is new in HTTP/1.1. It allows applicationsto use persistent connections while not knowing the content length a priorito the response header is generated.Both the encoder and the decoder are of typeHTCoder which is defined in theStream Pipe Builder. This means that bot theencoder and the decoder are registered dynamically and called by the StreamPipe Builder if required.Note: These streams are not set up by default. They must beregistered by the application. You can use the default initialization functionHTEncoderInit() function in theinitialization interface.This module is implemented by HTTChunk.c, and itis a part of the  W3C Sample CodeLibrary.*/#ifndef HTTCHUNK_H#define HTTCHUNK_H#include "HTFormat.h"/**/extern HTCoder HTChunkedDecoder, HTChunkedEncoder;/**/#endif /* HTTCHUNK_H *//*    @(#) $Id: HTTChunk.html,v 2.4 1998/05/14 02:11:09 frystyk Exp $*/

⌨️ 快捷键说明

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