博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网络类库 CPPSockets
阅读量:5742 次
发布时间:2019-06-18

本文共 655 字,大约阅读时间需要 2 分钟。

hot3.png

CPPSockets 是一个 C++ 编写的网络类库,采用 Java 的类命名方式和接口,仿造了一个 C++版本的,比如ServerSocket DatagramSocket SocketAddress。

示例代码:

int _tmain(int argc, _TCHAR* argv[]){	  	try	{			//You can use the browser ( IE, Firefox, etc. ) to visit:		//http://127.0.0.1/		// simple http server 		ServerSocket s(80);		//or		//ServerSocket s;		//s.bind( SocketAddress("0.0.0.0",80));	  		printf("listen ok\n");				Socket c2("127.0.0.1",80);		while(1)		{			 				Socket c = s.accept (); 				printf(" Accept [%d]\n",c.GetSock() ); 				CloseHandle( CreateThread(0,0,clientthread,&c,0,0)  );//fixme		}	}catch(exception e){		printf("%s",e.what());	}}

转载于:https://my.oschina.net/simawei/blog/810701

你可能感兴趣的文章
深入实践Spring Boot2.4.2 节点和关系实体建模
查看>>
10个巨大的科学难题需要大数据解决方案
查看>>
Setting Up a Kerberos server (with Debian/Ubuntu)
查看>>
用 ThreadLocal 管理用户session
查看>>
setprecision后是要四舍五入吗?
查看>>
shiro初步 shiro授权
查看>>
上云就是这么简单——阿里云10分钟快速入门
查看>>
MFC多线程的创建,包括工作线程和用户界面线程
查看>>
我的友情链接
查看>>
FreeNAS8 ISCSI target & initiator for linux/windows
查看>>
cvs文件提交冲突解决方案
查看>>
PostgreSQL数据库集群初始化
查看>>
++重载
查看>>
Rainbond 5.0.4版本发布-做最好用的云应用操作系统
查看>>
nodejs 完成mqtt服务端
查看>>
在ASP.NET MVC 中获取当前URL、controller、action
查看>>
Spring IoC容器初的初始化过程
查看>>
sql server 触发器
查看>>
[工具]前端自动化工具grunt+bower+yoman
查看>>
自动化测试之WatiN(2)
查看>>