资源简介
windows平台简单的http_client实现POST-GET方法C语言实现
代码片段和文件信息
// http_client.cpp : Defines the entry point for the console application.
//
/*
============================================================================
Name : linux_http_client.c
Author : xujingwei
Version :
Copyright : 2011-
Description : linux_http_client in C Ansi-style
============================================================================
*/
#include “stdafx.h“
#include
#include
#include “http_client.h“
#define BUFFER_SIZE 1024
int http_client_create(http_client *pclientconst char *host int port)
{
struct hostent *he;
if(pclient == NULL)
return -1;
memset(pclient0sizeof(http_client));
#ifdef WIN32
WSADATA wsaData;
WSAStartup(MAKEWORD(2 2) &wsaData);
#endif /* WIN32 */
if((h
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3318784 2011-06-19 22:54 http_client\Debug\http_client.bsc
文件 196669 2011-06-19 22:54 http_client\Debug\http_client.exe
文件 213428 2011-06-19 22:54 http_client\Debug\http_client.ilk
文件 60733 2011-06-19 22:54 http_client\Debug\http_client.obj
文件 449256 2011-06-19 22:27 http_client\Debug\http_client.pch
文件 500736 2011-06-19 22:54 http_client\Debug\http_client.pdb
文件 0 2011-06-19 22:54 http_client\Debug\http_client.sbr
文件 1802 2011-06-19 22:27 http_client\Debug\StdAfx.obj
文件 170 2011-06-19 22:27 http_client\Debug\StdAfx.sbr
文件 148480 2011-06-19 22:55 http_client\Debug\vc60.idb
文件 241664 2011-06-19 22:54 http_client\Debug\vc60.pdb
文件 8453 2011-06-19 22:54 http_client\http_client.cpp
文件 4699 2011-06-19 22:56 http_client\http_client.dsp
文件 545 2011-06-19 17:08 http_client\http_client.dsw
文件 630 2011-06-19 17:11 http_client\http_client.h
文件 50176 2011-06-19 22:58 http_client\http_client.ncb
文件 53760 2011-06-19 22:58 http_client\http_client.opt
文件 1529 2011-06-19 22:54 http_client\http_client.plg
文件 1196 2011-06-19 22:44 http_client\index.html
文件 1238 2011-06-19 17:08 http_client\ReadMe.txt
文件 298 2011-06-19 17:08 http_client\StdAfx.cpp
文件 667 2011-06-19 17:08 http_client\StdAfx.h
目录 0 2011-06-19 22:54 http_client\Debug
目录 0 2011-06-19 22:58 http_client
----------- --------- ---------- ----- ----
5254913 24
相关资源
- 精通UNIX下C语言编程及项目实践总结与
- 加权调度算法(C语言)
- crc16几种标准校验算法及c语言代码(
- 树莓派CAN通讯(c语言)
- windows文件夹监控(c++源码)
- zprotect 1.6 脱壳工具()
- windows系统编程源代码第四版
- DDC/CI Tool
- Programming Windows 程式开发设计指南(
- FTP客户端源代码C语言
- Windows核心编程源码
- windows 串口升级工具(c++源码)
- ntmedsys.sys(c++源码)
- Windows Sockets 规范及应用-Windows网络编
- httpserver(SuperCookie)
- C语言基数排序——顺序队列实现
- Windows Sockets 编程及UR机器人通信数据
- HTTP代理 VPN
- 基于libevent 实现的http服务C++(myhttp
- 256色转灰度图(c语言)
- windows下定时关闭进程(应用程序)
- c语言实现一个简单的线程池(thread
- avl树的实现(c语言)
- C++ 获得Windows和System的路径
- C++ 隐藏和显示Windows任务栏
- C++ 用C语言判断文件是否存在
- c语言地空对战游戏.zip
- c语言实现水波纹显示效果.zip
- c语言打字母游戏源码.zip
- c语言使用CMakeLists.txt编译和使用静态
评论
共有 条评论