使用Code::blocks在windows下写网络程序
使用Code::blocks在windows下写网络程序
作者 |
He YiJun – storysnail<at>hotmail.com |
||||
版权 |
转载请保留本声明! 本文档包含的原创代码根据General Public License,v3 发布 本文档根据GNU 文中所引用的软件版权详见各软件版权具体声明,文中所提及的所有商标均为各自商标所有人的财产。 |
||||
更新 |
|
前言:
这是一个用来读取指定网页内容的程序。当前还非常原始,但已经能完成基本的功能。未来我会在这个程序的基础上不断扩充,让这个程序变成一个可用的更新检测程序!
一:windows下用Code::blocks开发网络程序
1:
Code::blocks 中新建一个工程
2:
建完工程后点击Project菜单,选择Build
options...
3:
选择Linker
settings标签页,在Other
linker options:中添加:
-lwsock32
二 源代码
- /***********************************************************************
- * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
- Eabc-version-verfy.c
- Develop Team : ls
- Team Leader : He YiJun (storysnail<at>gmail.com)
- Main Programmer : He YiJun
- Programmer : Ling Ying
- Program comments : Ling Ying
- Dict Editor : Yang QiuXi
- Documents : Ling Ying、 Yang QiuXi
- Art Designer : He YiJun
- License : GPLv3
- Last Update : 2013-02-25
- * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
- *************************************************************************/
- #include <windows.h> // 新增 windows.h
- #include <winsock2.h>
- //#pragma comment(lib, "ws2_32.lib") // For VS
- #include <tchar.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <malloc.h>
- #include <io.h>
- #ifdef _MT
- #include <process.h>
- #endif
- /* DWORD_PTR (pointer precision unsigned integer) is used for integers
- * that are converted to handles or pointers
- * This eliminates Win64 warnings regarding conversion between
- * 32 and 64-bit data, as HANDLEs and pointers are 64 bits in
- * Win64 (See Chapter 16). This is enable only if _Wp64 is defined.
- */
- #if !defined(_Wp64)
- #define DWORD_PTR DWORD
- #define LONG_PTR LONG
- #define INT_PTR INT
- #endif
- #define MAX_RQRS_LEN 0x1000 //4096
- /* Required for sockets */
- #define SERVER_PORT 80
- typedef struct {
- LONG32 rsLen;
- BYTE record [MAX_RQRS_LEN];
- } RESPONSE;
- typedef struct {
- LONG32 rqLen;
- BYTE record [MAX_RQRS_LEN];
- } REQUEST;
- #define RQ_SIZE sizeof (REQUEST)
- #define RQ_HEADER_LEN RQ_SIZE-MAX_RQRS_LEN
- #define RS_SIZE sizeof (RESPONSE)
- #define RS_HEADER_LEN RS_SIZE-MAX_RQRS_LEN
- static BOOL SendRequest (REQUEST *, SOCKET);
- static BOOL ReceiveResponse (RESPONSE *, SOCKET);
- static VOID PrintError (LPCTSTR , DWORD , BOOL);
- struct sockaddr_in clientSAddr;
- int _tmain (int argc, LPSTR argv[])
- {
- SOCKET clientSock = INVALID_SOCKET;
- REQUEST request;
- RESPONSE response;
- WSADATA WSStartData; /* Socket library data structure */
- DWORD conVal;
- while (1) {
- _tprintf (_T("%s"), _T("\nEnter Command: "));
- _fgetts ((char *)request.record, MAX_RQRS_LEN-1, stdin);
- /* Get rid of the new line at the end */
- /* Messages use 8-bit characters */
- request.record[strlen((char *)request.record)-1] = '\0';
- if (strcmp ((char *)request.record, "$Quit") == 0)
- break;
- if (strncmp ((char *)request.record, "GET",3) == 0)
- request.record[strlen((char *)request.record)] = '\n';
- /* Initialize the WS library. Ver 2.2 */
- if (WSAStartup (MAKEWORD (2, 2), &WSStartData) != 0)
- PrintError (_T("Cannot support sockets"), 1, TRUE);
- /* Connect to the server */
- /* Follow the standard client socket/connect sequence */
- clientSock = socket(AF_INET, SOCK_STREAM, 0);
- if (clientSock == INVALID_SOCKET)
- PrintError (_T("Failed client socket() call"), 2, TRUE);
- memset (&clientSAddr, 0, sizeof(clientSAddr));
- clientSAddr.sin_family = AF_INET;
- //clientSAddr.sin_addr.s_addr = htonl(inet_addr ("121.127.248.96"));
- clientSAddr.sin_addr.s_addr = inet_addr ("121.127.248.96");
- clientSAddr.sin_port = htons(SERVER_PORT);
- conVal = connect (clientSock, (struct sockaddr *)&clientSAddr, sizeof(clientSAddr));
- if (conVal == SOCKET_ERROR) PrintError (_T("Failed client connect() call)"), 3, TRUE);
- SendRequest (&request, clientSock);
- ReceiveResponse (&response, clientSock);
- shutdown (clientSock, SD_BOTH); /* Disallow sends and receives */
- closesocket (clientSock);
- WSACleanup();
- close (clientSock);
- }
- _tprintf (_T("\n****Leaving client\n"));
- return 0;
- }
- // GET http://www.7fane.com/test.html
- BOOL SendRequest (REQUEST *pRequest, SOCKET sd)
- {
- /* Send the the request to the server on socket sd */
- BOOL disconnect = FALSE;
- LONG32 nRemainSend, nXfer;
- LPBYTE pBuffer;
- //char target[]="GET http://www.7fane.com/test.html\n";
- pRequest->rqLen = (DWORD)(strlen ((char *)pRequest->record) + 1);
- nRemainSend = pRequest->rqLen;
- pBuffer = (LPBYTE)pRequest->record;
- _tprintf (_T("%s%s"), _T("\nNow SendRequestMessage: "),pBuffer);
- while (nRemainSend > 0 && !disconnect) {
- nXfer = send (sd, (char *)pBuffer, nRemainSend, 0);
- //nXfer = send (sd, target, strlen(target), 0);
- if (nXfer == SOCKET_ERROR) PrintError (_T("client send() failed"), 5, TRUE);
- disconnect = (nXfer == 0);
- nRemainSend -=nXfer;
- pBuffer += nXfer;
- _tprintf (_T("%s%d"), _T("\nSend btyes: "),nXfer);
- //_tprintf (_T("%s%s"), _T("\nSend content: "),target);
- _tprintf (_T("%s%s"), _T("\nSend content: "),pRequest->record);
- }
- return disconnect;
- }
- BOOL ReceiveResponse (RESPONSE *pResponse, SOCKET sd)
- {
- BOOL disconnect = FALSE;
- LONG32 nRemainRecv, nXfer;
- LPBYTE pBuffer;
- _tprintf (_T("%s"), _T("\nNow ReceiveResponseMessage! "));
- while(!disconnect) {
- /* Read each response and send it to std out.*/
- memset (pResponse->record, 0, MAX_RQRS_LEN);
- nRemainRecv = MAX_RQRS_LEN;
- pBuffer = (LPBYTE)pResponse->record;
- while (nRemainRecv > 0 && !disconnect) {
- nXfer = recv (sd, (char *)pBuffer, nRemainRecv, 0);
- if (nXfer == SOCKET_ERROR) PrintError (_T("client response recv() failed"), 7, TRUE);
- disconnect = (nXfer == 0);
- nRemainRecv -=nXfer;
- pBuffer += nXfer;
- if(!disconnect) {
- _tprintf (_T("%s[%d]"), _T("\nReceive bytes: "),nXfer);
- _tprintf (_T("%s\n%s"), _T("\nReceive content: "),pResponse->record);
- }
- }
- }
- return disconnect;
- }
- VOID PrintError (LPCTSTR userMessage, DWORD exitCode, BOOL printErrorMessage)
- {
- DWORD eMsgLen, errNum = GetLastError ();
- LPTSTR lpvSysMsg;
- _ftprintf (stderr, _T("%s\n"), userMessage);
- if (printErrorMessage) {
- eMsgLen = FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
- NULL, errNum, MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
- (LPTSTR) &lpvSysMsg, 0, NULL);
- if (eMsgLen > 0)
- {
- _ftprintf (stderr, _T("%s\n"), lpvSysMsg);
- }
- else
- {
- _ftprintf (stderr, _T("Last Error Number; %d.\n"), (int)errNum);
- }
- if (lpvSysMsg != NULL) LocalFree (lpvSysMsg); /* Explained in Chapter 5. */
- }
- if (exitCode > 0)
- ExitProcess (exitCode);
- return;
- }
三 运行截图
程序开始运行
输入命令和网址
注意下面截图的网址是我和泠在很久以前建的网站地址,目前已经失效了,所以你应该用一个有效的网址替换!
程序得到的网页内容
退出程序
下面是该程序的linux版本,这段程序是《使用C4droid和botbrew在andriod手机上编程 》这篇文章的两个示例程序之一,不过《使用C4droid和botbrew在andriod手机上编程 》这篇文章现在已经放弃维护了!
/********************************************************************************
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
get-www
main.c Develop Team : ls
Main Programmer : He YiJun (storysnail<at>gmail.com)
License : GPLv3
Last Update : 2013-03-03
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
*********************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h> static int gw_connect(char *domain,int port)
{
int sock_sd;
int i;
struct hostent *site_dns;
struct sockaddr_in s_addr;
site_dns = gethostbyname(domain);
if(site_dns == NULL) {
printf("gethostbyname error!\n");
return -;
}
printf("default ip: %s\n",inet_ntoa(*((struct in_addr *)site_dns->h_addr)));
for(i=; i< site_dns->h_length/sizeof(int); i++) {
printf("IP:%d:%s\n",i+,inet_ntoa(*((struct in_addr *)site_dns->h_addr_list[i])));
}
sock_sd = socket(AF_INET,SOCK_STREAM,);
if(sock_sd < ) {
printf ("socket error!");
return -;
}
memset(&s_addr,,sizeof(struct sockaddr_in));
memcpy(&s_addr.sin_addr,site_dns ->h_addr_list[],site_dns->h_length);
s_addr.sin_family = AF_INET;
s_addr.sin_port = htons(port);
printf("s_addr ip: %s",inet_ntoa(*((struct in_addr *)&s_addr.sin_addr)));
return (connect(sock_sd,(struct sockaddr *)&s_addr,sizeof(struct sockaddr)) < ? - : sock_sd);
} static int gw_send(int sock_sd,char *fmt,...)
{
char buf [];
va_list argptr;
va_start(argptr,fmt);
vsprintf(buf,fmt,argptr);
va_end(argptr);
printf("Send:\n%s\n",buf);
return send(sock_sd,buf,strlen(buf),);
} void main(int argc,char **argv)
{
int sock_sd;
char rBuf[];
sock_sd = gw_connect("www.7fane.com",);
if(sock_sd < ) {
printf("connect error!\n");
return;
}
//注意:该网站只用于个人测试,在2013年11月末到期,
//如果你在之后的日期使用,请使用其它网页地址
gw_send(sock_sd,"GET http://www.7fane.com/test.html\n");
gw_send(sock_sd,"%c",);
while(read(sock_sd,rBuf,) > )
printf("%c",rBuf[]);
close(sock_sd);
return;
}
使用Code::blocks在windows下写网络程序的更多相关文章
- CentOS虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器?
一.为什么要这么做? 最近在做Linux下的软件开发,但又想使用Windows下的编程工具“Source Insight”. 亲测有效. 要注意查看smb.conf.example,centos7的 ...
- [转]CentOS虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器?
CentOS虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器? 转自这里 一.为什么要这么做? 最近在做Linux下的软件开发,但又想使用Windows下的编程工具“Source Insi ...
- windows下写的脚本,在linux下执行失败
Windows中的换行符为CRLF, 即正则表达式的rn(ASCII码为13和10), 而Unix(或Linux)换行符为LF, 即正则表达式的n. 在Windows和Linux下协同工作的时候, 往 ...
- # 如何在Windows下运行Linux程序
如何在Windows下运行Linux程序 一.搭建 Linux 环境 1.1 安装 VMware Workstation https://www.aliyundrive.com/s/TvuMyFdTs ...
- Windows下,通过程序设置全屏抗锯齿(多重采样)的方法
这里说的全屏抗锯齿,不是基于着色器的FXAA之类的方式,而是兼容性更好的,基于固定管线的多重采样方式. 先来说一下开发环境,我用的是VC2013+GLEW1.11. 要通过程序设置多重采样,首先需要进 ...
- [MapReduce_add_1] Windows 下开发 MapReduce 程序部署到集群
0. 说明 Windows 下开发 MapReduce 程序部署到集群 1. 前提 在本地开发的时候保证 resource 中包含以下配置文件,从集群的配置文件中拷贝 在 resource 中新建 ...
- gcc和MinGW的异同(在cygwin/gcc做的东西可以无缝的用在linux下,没有任何问题,是在windows下开发linux程序的一个很好的选择)
cygwin/gcc和MinGW都是gcc在windows下的编译环境,但是它们有什么区别,在实际工作中如何选择这两种编译器. cygwin/gcc完全可以和在linux下的gcc化做等号,这个可以从 ...
- 【Code::Blocks】windows 环境下编译 Code::Blocks(已修正)
Code::Blocks 在2012-11-25发布了最新的12.11版本,相比上一个版本(10.05),Code::Blocks 进行了许多改进和更新(Change log). 引用 Wikiped ...
- 使用code::blocks编译windows的dll链接库
因为机子上没有安装Visual Studio,所以找到了一种通过code::blocks编译dll的方式,踩到的坑是code::blocks默认的compiler是32位的,这样编译出的dll也是32 ...
随机推荐
- .net使用mvc模式开发web应用 模型与视图间的数据处理
http://www.cnblogs.com/JeffreyZhao/archive/2009/02/27/mvc-use-strong-type-everywhere.html#3427764 本文 ...
- C#时间操作
C#时间戳与日期互转 /// <summary> /// 时间戳转为C#格式时间 /// </summary> /// <param name="timeSta ...
- 使用jekyll在GitHub Pages上搭建个人博客【转】
网上有不少资源,但大多是“授人以鱼”,文中一步一步的告诉你怎么做,却没有解释为什么,以及他是如何知道的.他们默认着你知道种种专业名词的含义,默认着你掌握着特定技能.你折腾半天,查资料,看教程,一步步下 ...
- 类的static成员并用其实现一个单例模式
对于特定类型的全体对象而言,有时候可能需要访问一个全局的变量.比如说统计某种类型对象已创建的数量.如果我们用全局变量会破坏数据的封装,一般的用户代码都可以修改这个全局变量,这时我们可以用类的静态成员来 ...
- heading python decorator
decorator make a wrapper function do something before and after the original function. The wrapper f ...
- 百度地图API 与 jquery 同时使用时报 TypeError $(...) is null错误 失效的原因及解决办法
在引用百度地图API后,发现jquery 根据id 找不到 form.但是对于别的控件没有问题. 在排除了 html加载的问题后. 上网查找 发现以下解决办法: 原因应该是有冲突的插件. 解决办法将 ...
- ReferenceQueue<T>随笔
参考资料: ReferenceQueue食用手册 java引用食用手册 ReferenceQueue源代码里面很好的展示了java队列的实现思路, 以及多线程观察者的实现思路 多线程观察者实现思路: ...
- Docker-3:Data Volume
Sometimes, applications need to share access to data or persist data after a container is deleted. ...
- oracle创建用户并导入dmp文件
SQL命令行执行以下命令:SQL> conn sys/111111 as sysdba; SQL> CREATE USER TEST11 IDENTIFIED BY "11111 ...
- Linux SVN 命令详解(zz)
Linux下常用SVN命令 2012-04-02 11:46:00 标签:服务器 目录 Linux checkout linux系统 1.将文件checkout到本地目录 svn checkout p ...