Python重新加载模块 Python socket实现简单web服务器 ...
分类:
编程语言 时间:
2019-08-13 22:22:51
阅读次数:
88
importsocketimportreimportgeventfromgeventimportmonkeymonkey.patch_all()#识别等待时间,让协程切换defclient_handler(client_socket):‘‘‘接收客户端链接请求,响应对应的的数据‘‘‘#接收数据request_data=client_socket.recv(4096)#判断是否接收到数据ifnotr
分类:
编程语言 时间:
2018-04-08 01:21:50
阅读次数:
228
http-server例子是libevent提供的一个简单web服务器,实现了对静态网页的处理功能。 1 /* 2 * gcc -g -o http-server http-server.c -levent 3 */ 4 #include <stdio.h> 5 #include <stdlib.h ...
分类:
Web程序 时间:
2016-12-18 09:57:38
阅读次数:
511