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

📄 ghttp_constants.h

📁 完整实现http协议源代码(WINDOWS或LINUX平台均可移植使用),我在VC++上(不调用WINDOWS的HTTP的API)可实现XML文件下载等.
💻 H
字号:
/* * ghttp_constants.h -- definitions for char constants that people *                      might want to use * Created: Christopher Blizzard <blizzard@appliedtheory.com> * * Copyright (C) 1998 Free Software Foundation * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef GHTTP_CONSTANTS_H#define GHTTP_CONSTANTS_H#ifdef __cplusplusextern "C" {#endif /* __cplusplus */extern const char http_hdr_Allow[];extern const char http_hdr_Content_Encoding[];extern const char http_hdr_Content_Language[];extern const char http_hdr_Content_Length[];extern const char http_hdr_Content_Location[];extern const char http_hdr_Content_MD5[];extern const char http_hdr_Content_Range[];extern const char http_hdr_Content_Type[];extern const char http_hdr_Expires[];extern const char http_hdr_Last_Modified[];/* general headers */extern const char http_hdr_Cache_Control[];extern const char http_hdr_Connection[];extern const char http_hdr_Date[];extern const char http_hdr_Pragma[];extern const char http_hdr_Transfer_Encoding[];extern const char http_hdr_Update[];extern const char http_hdr_Trailer[];extern const char http_hdr_Via[];/* request headers */extern const char http_hdr_Accept[];extern const char http_hdr_Accept_Charset[];extern const char http_hdr_Accept_Encoding[];extern const char http_hdr_Accept_Language[];extern const char http_hdr_Authorization[];extern const char http_hdr_Expect[];extern const char http_hdr_From[];extern const char http_hdr_Host[];extern const char http_hdr_If_Modified_Since[];extern const char http_hdr_If_Match[];extern const char http_hdr_If_None_Match[];extern const char http_hdr_If_Range[];extern const char http_hdr_If_Unmodified_Since[];extern const char http_hdr_Max_Forwards[];extern const char http_hdr_Proxy_Authorization[];extern const char http_hdr_Range[];extern const char http_hdr_Referrer[];extern const char http_hdr_TE[];extern const char http_hdr_User_Agent[];/* response headers */extern const char http_hdr_Accept_Ranges[];extern const char http_hdr_Age[];extern const char http_hdr_ETag[];extern const char http_hdr_Location[];extern const char http_hdr_Retry_After[];extern const char http_hdr_Server[];extern const char http_hdr_Vary[];extern const char http_hdr_Warning[];extern const char http_hdr_WWW_Authenticate[];/* Other headers */extern const char http_hdr_Set_Cookie[];/* WebDAV headers */extern const char http_hdr_DAV[];extern const char http_hdr_Depth[];extern const char http_hdr_Destination[];extern const char http_hdr_If[];extern const char http_hdr_Lock_Token[];extern const char http_hdr_Overwrite[];extern const char http_hdr_Status_URI[];extern const char http_hdr_Timeout[];#ifdef __cplusplus}#endif /* __cplusplus */#endif /* GHTTP_CONSTANTS_H */

⌨️ 快捷键说明

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