实例介绍
libevent 多线程 HTTP post服务器
【实例截图】
【核心代码】
c882d32f-cefc-4870-9484-43e927ad559e
└── libeventTest
├── Debug
│ ├── conf.conf
│ ├── libeventTest.exe
│ ├── libeventTest.ilk
│ ├── libeventTest.pdb
│ ├── libeventTest.suo
│ ├── libmySQL.dll
│ ├── log
│ │ └── 20140812log.log
│ └── pthreadVC2.dll
├── ipch
│ └── libeventtest-9f9ff2f7
│ └── libeventtest-a30a44c5.ipch
├── libeventTest
│ ├── conf.conf
│ ├── dataParser.cpp
│ ├── dataParser.h
│ ├── Debug
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── dataParser.obj
│ │ ├── libeventTest.Build.CppClean.log
│ │ ├── libeventTest.exe.embed.manifest
│ │ ├── libeventTest.exe.embed.manifest.res
│ │ ├── libeventTest.exe.intermediate.manifest
│ │ ├── libeventTest.lastbuildstate
│ │ ├── libeventTest.log
│ │ ├── libeventTest_manifest.rc
│ │ ├── libeventTest.obj
│ │ ├── libeventTest.pch
│ │ ├── link.11316-cvtres.read.1.tlog
│ │ ├── link.11316-cvtres.write.1.tlog
│ │ ├── link.11316.read.1.tlog
│ │ ├── link.11316.read.2.tlog
│ │ ├── link.11316.write.1.tlog
│ │ ├── link.12316-cvtres.read.1.tlog
│ │ ├── link.12316-cvtres.write.1.tlog
│ │ ├── link.12316.read.1.tlog
│ │ ├── link.12316.read.2.tlog
│ │ ├── link.12316.write.1.tlog
│ │ ├── link.13252-cvtres.read.1.tlog
│ │ ├── link.13252-cvtres.write.1.tlog
│ │ ├── link.13252.read.1.tlog
│ │ ├── link.13252.read.2.tlog
│ │ ├── link.13252.write.1.tlog
│ │ ├── link.13300-cvtres.read.1.tlog
│ │ ├── link.13300-cvtres.write.1.tlog
│ │ ├── link.13300.read.1.tlog
│ │ ├── link.13300.read.2.tlog
│ │ ├── link.13300.write.1.tlog
│ │ ├── link.1392-cvtres.read.1.tlog
│ │ ├── link.1392-cvtres.write.1.tlog
│ │ ├── link.1392.read.1.tlog
│ │ ├── link.1392.read.2.tlog
│ │ ├── link.1392.write.1.tlog
│ │ ├── link.7900-cvtres.read.1.tlog
│ │ ├── link.7900-cvtres.write.1.tlog
│ │ ├── link.7900.read.1.tlog
│ │ ├── link.7900.read.2.tlog
│ │ ├── link.7900.write.1.tlog
│ │ ├── link.8380-cvtres.read.1.tlog
│ │ ├── link.8380-cvtres.write.1.tlog
│ │ ├── link.8380.read.1.tlog
│ │ ├── link.8380.read.2.tlog
│ │ ├── link.8380.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.read.2.tlog
│ │ ├── link.write.1.tlog
│ │ ├── Log.obj
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ ├── rc.write.1.tlog
│ │ ├── ReadConfig.obj
│ │ ├── stdafx.obj
│ │ ├── tinystr.obj
│ │ ├── tinyxmlerror.obj
│ │ ├── tinyxml.obj
│ │ ├── tinyxmlparser.obj
│ │ ├── vc100.idb
│ │ ├── vc100.pdb
│ │ └── WorkThread.obj
│ ├── include
│ │ ├── event2
│ │ │ ├── buffer_compat.h
│ │ │ ├── bufferevent_compat.h
│ │ │ ├── bufferevent.h
│ │ │ ├── bufferevent_ssl.h
│ │ │ ├── bufferevent_struct.h
│ │ │ ├── buffer.h
│ │ │ ├── dns_compat.h
│ │ │ ├── dns.h
│ │ │ ├── dns_struct.h
│ │ │ ├── event_compat.h
│ │ │ ├── event-config.h
│ │ │ ├── event.h
│ │ │ ├── event_struct.h
│ │ │ ├── http_compat.h
│ │ │ ├── http.h
│ │ │ ├── http_struct.h
│ │ │ ├── keyvalq_struct.h
│ │ │ ├── listener.h
│ │ │ ├── rpc_compat.h
│ │ │ ├── rpc.h
│ │ │ ├── rpc_struct.h
│ │ │ ├── tag_compat.h
│ │ │ ├── tag.h
│ │ │ ├── thread.h
│ │ │ └── util.h
│ │ ├── json
│ │ │ ├── autolink.h
│ │ │ ├── config.h
│ │ │ ├── features.h
│ │ │ ├── forwards.h
│ │ │ ├── json.h
│ │ │ ├── reader.h
│ │ │ ├── value.h
│ │ │ └── writer.h
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mysql
│ │ │ ├── config-win.h
│ │ │ ├── decimal.h
│ │ │ ├── errmsg.h
│ │ │ ├── keycache.h
│ │ │ ├── libmysql.def
│ │ │ ├── m_ctype.h
│ │ │ ├── m_string.h
│ │ │ ├── my_alloc.h
│ │ │ ├── my_attribute.h
│ │ │ ├── my_dbug.h
│ │ │ ├── my_dir.h
│ │ │ ├── my_getopt.h
│ │ │ ├── my_global.h
│ │ │ ├── my_list.h
│ │ │ ├── my_net.h
│ │ │ ├── my_no_pthread.h
│ │ │ ├── my_pthread.h
│ │ │ ├── mysql_com.h
│ │ │ ├── mysqld_ername.h
│ │ │ ├── mysqld_error.h
│ │ │ ├── mysql_embed.h
│ │ │ ├── mysql.h
│ │ │ ├── mysql_time.h
│ │ │ ├── mysql_version.h
│ │ │ ├── my_sys.h
│ │ │ ├── my_xml.h
│ │ │ ├── raid.h
│ │ │ ├── sql_common.h
│ │ │ ├── sql_state.h
│ │ │ ├── sslopt-case.h
│ │ │ ├── sslopt-longopts.h
│ │ │ ├── sslopt-vars.h
│ │ │ └── typelib.h
│ │ └── tree.h
│ ├── json
│ │ ├── json_batchallocator.h
│ │ ├── json_internalarray.inl
│ │ ├── json_internalmap.inl
│ │ ├── json_reader.cpp
│ │ ├── json_value.cpp
│ │ ├── json_valueiterator.inl
│ │ ├── json_writer.cpp
│ │ └── sconscript
│ ├── json_vc71_libmtd.lib
│ ├── lib
│ │ ├── libevent_core.lib
│ │ ├── libevent_extras.lib
│ │ └── libevent.lib
│ ├── libeventTest.cpp
│ ├── libeventTest.vcxproj
│ ├── libeventTest.vcxproj.filters
│ ├── libeventTest.vcxproj.user
│ ├── libtinyxml.a
│ ├── libtinyxml.so
│ ├── Log.cpp
│ ├── Log.h
│ ├── Makefile
│ ├── postStruct.h
│ ├── ReadConfig.cpp
│ ├── ReadConfig.h
│ ├── ReadMe.txt
│ ├── Release
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── dataParser.obj
│ │ ├── libeventTest.Build.CppClean.log
│ │ ├── libeventTest.lastbuildstate
│ │ ├── libeventTest.log
│ │ ├── libeventTest.pch
│ │ ├── libeventTest.unsuccessfulbuild
│ │ ├── Log.obj
│ │ ├── ReadConfig.obj
│ │ ├── stdafx.obj
│ │ ├── tinystr.obj
│ │ ├── tinyxmlerror.obj
│ │ ├── tinyxml.obj
│ │ ├── tinyxmlparser.obj
│ │ ├── vc100.pdb
│ │ └── WorkThread.obj
│ ├── sleep.vbs
│ ├── start.bat
│ ├── startup.sh
│ ├── startup.sh.bak
│ ├── stdafx.cpp
│ ├── stdafx.h
│ ├── targetver.h
│ ├── WorkThread.cpp
│ └── WorkThread.h
├── libeventTest.opensdf
├── libeventTest.sdf
├── libeventTest.sln
└── libeventTest.suo
14 directories, 207 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论