http_response.h
来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C头文件 代码 · 共 52 行
H
52 行
// $Id: http_response.h 73790 2006-07-27 20:43:46Z wotte $// There are two kinds of HTTP Responses in a proxy.// One is the kind you have to read in from the HTTP server.// The other is the kind you issue to the HTTP client.#ifndef HTTPU_HTTP_RESPONSE_HPP#define HTTPU_HTTP_RESPONSE_HPP#include "ace/Message_Block.h"#if !defined (ACE_LACKS_PRAGMA_ONCE)# pragma once#endif /* ACE_LACKS_PRAGMA_ONCE */#include "JAWS/Parse_Headers.h"#include "HTTPU/http_export.h"#include "HTTPU/http_base.h"#include "HTTPU/parse_http_response.h"class HTTPU_Export HTTP_Response : public HTTP_Base{public: HTTP_Response (void); ~HTTP_Response (void); Parse_HTTP_Response *response_line (void); // Returns the parsed response line. void dump (void);protected: virtual void parse_line (void); virtual int espouse_line (void);private: Parse_HTTP_Response response_;};#if defined (ACE_HAS_INLINED_OSCALLS)# if defined (ACE_INLINE)# undef ACE_INLINE# endif /* ACE_INLINE */# define ACE_INLINE inline# include "HTTPU/http_response.inl"# endif /* ACE_HAS_INLINED_OSCALLS */#endif /* !defined (HTTPU_HTTP_RESPONSE_HPP) */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?