├── MainServer ├── MainServer │ ├── Debug │ │ ├── 4758cca.dll │ │ ├── aep.dll │ │ ├── atalla.dll │ │ ├── capi.dll │ │ ├── chil.dll │ │ ├── cswift.dll │ │ ├── gmp.dll │ │ ├── gost.dll │ │ ├── libeay32.dll │ │ ├── libmysql.dll │ │ ├── nuron.dll │ │ ├── padlock.dll │ │ ├── pthreadVC1.dll │ │ ├── ssleay32.dll │ │ ├── sureware.dll │ │ └── ubsec.dll │ ├── MainServer.sln │ └── MainServer │ │ ├── MainServer.vcxproj │ │ ├── MainServer.vcxproj.filters │ │ ├── MainServer.vcxproj.user │ │ ├── server.conf │ │ └── server │ │ ├── ca.crt │ │ ├── server.crt │ │ └── server.key ├── Makefile ├── hiredis-win32-master │ ├── .gitignore │ ├── CHANGELOG.md │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── adapters │ │ ├── ae.h │ │ ├── libev.h │ │ └── libevent.h │ ├── async.c │ ├── async.h │ ├── config.h │ ├── dict.c │ ├── dict.h │ ├── example-ae.c │ ├── example-libev.c │ ├── example-libevent.c │ ├── example.c │ ├── fmacros.h │ ├── hiredis.c │ ├── hiredis.h │ ├── net.c │ ├── net.h │ ├── sds.c │ ├── sds.h │ ├── test.c │ └── win32 │ │ ├── example │ │ ├── example.vcproj │ │ ├── example.vcxproj │ │ └── hiredis.lib │ │ ├── hiredis.sln │ │ ├── hiredis.sln.old │ │ ├── hiredis.vcproj │ │ └── hiredis.vcxproj ├── libevent │ ├── include │ │ ├── event2 │ │ │ ├── buffer.h │ │ │ ├── buffer_compat.h │ │ │ ├── bufferevent.h │ │ │ ├── bufferevent_compat.h │ │ │ ├── bufferevent_ssl.h │ │ │ ├── bufferevent_struct.h │ │ │ ├── dns.h │ │ │ ├── dns_compat.h │ │ │ ├── dns_struct.h │ │ │ ├── event-config.h │ │ │ ├── event.h │ │ │ ├── event_compat.h │ │ │ ├── event_struct.h │ │ │ ├── http.h │ │ │ ├── http_compat.h │ │ │ ├── http_struct.h │ │ │ ├── keyvalq_struct.h │ │ │ ├── listener.h │ │ │ ├── rpc.h │ │ │ ├── rpc_compat.h │ │ │ ├── rpc_struct.h │ │ │ ├── tag.h │ │ │ ├── tag_compat.h │ │ │ ├── thread.h │ │ │ └── util.h │ │ └── tree.h │ └── lib │ │ ├── 32 │ │ ├── libevent.lib │ │ ├── libevent_core.lib │ │ └── libevent_extras.lib │ │ └── 64 │ │ ├── libevent.lib │ │ ├── libevent_core.lib │ │ └── libevent_extras.lib ├── libhiredis │ └── include │ │ └── hiredis.h ├── libmysql │ ├── include │ │ ├── big_endian.h │ │ ├── byte_order_generic.h │ │ ├── byte_order_generic_x86.h │ │ ├── decimal.h │ │ ├── errmsg.h │ │ ├── keycache.h │ │ ├── little_endian.h │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_alloc.h │ │ ├── my_byteorder.h │ │ ├── my_compiler.h │ │ ├── my_config.h │ │ ├── my_dbug.h │ │ ├── my_dir.h │ │ ├── my_getopt.h │ │ ├── my_global.h │ │ ├── my_list.h │ │ ├── my_pthread.h │ │ ├── my_sys.h │ │ ├── my_xml.h │ │ ├── mysql.h │ │ ├── mysql │ │ │ ├── client_authentication.h │ │ │ ├── client_plugin.h │ │ │ ├── client_plugin.h.pp │ │ │ ├── get_password.h │ │ │ ├── plugin_auth_common.h │ │ │ ├── plugin_trace.h │ │ │ ├── psi │ │ │ │ ├── mysql_file.h │ │ │ │ ├── mysql_idle.h │ │ │ │ ├── mysql_mdl.h │ │ │ │ ├── mysql_memory.h │ │ │ │ ├── mysql_ps.h │ │ │ │ ├── mysql_socket.h │ │ │ │ ├── mysql_sp.h │ │ │ │ ├── mysql_stage.h │ │ │ │ ├── mysql_statement.h │ │ │ │ ├── mysql_table.h │ │ │ │ ├── mysql_thread.h │ │ │ │ ├── mysql_transaction.h │ │ │ │ ├── psi.h │ │ │ │ ├── psi_base.h │ │ │ │ └── psi_memory.h │ │ │ ├── service_my_snprintf.h │ │ │ └── service_mysql_alloc.h │ │ ├── mysql_com.h │ │ ├── mysql_com_server.h │ │ ├── mysql_embed.h │ │ ├── mysql_time.h │ │ ├── mysql_version.h │ │ ├── mysqld_ername.h │ │ ├── mysqld_error.h │ │ ├── sql_common.h │ │ ├── sql_state.h │ │ ├── sslopt-case.h │ │ ├── sslopt-longopts.h │ │ ├── sslopt-vars.h │ │ └── typelib.h │ └── lib │ │ ├── libmysql.dll │ │ ├── libmysql.lib │ │ ├── vs10 │ │ └── mysqlclient.lib │ │ ├── vs11 │ │ └── mysqlclient.lib │ │ └── vs12 │ │ └── mysqlclient.lib ├── pthreads-win32 │ ├── include │ │ ├── pthread.h │ │ ├── sched.h │ │ └── semaphore.h │ └── lib │ │ ├── pthreadGC1.dll │ │ ├── pthreadGCE1.dll │ │ ├── pthreadVC1.dll │ │ ├── pthreadVC1.lib │ │ ├── pthreadVSE1.dll │ │ └── pthreadVSE1.lib ├── server.conf ├── server.pem ├── server │ ├── ca.crt │ ├── server.crt │ └── server.key ├── server_start.sh └── source │ ├── Common │ ├── CommStruct.h │ ├── Common.cpp │ ├── Common.h │ ├── Locker.cpp │ ├── MemoryPoolObj.cpp │ ├── MemoryPoolObj.h │ ├── locker.h │ └── nocopyable.h │ ├── Config │ ├── CConfiger.cpp │ └── CConfiger.h │ ├── Connection │ ├── CEventBaseMgr.cpp │ ├── CEventBaseMgr.h │ ├── CMainEventBase.cpp │ └── CMainEventBase.h │ ├── Mysql │ ├── CField.cpp │ ├── CField.h │ ├── CRecord.cpp │ ├── CRecord.h │ ├── CSqlClient.cpp │ ├── CSqlClient.h │ ├── CSqlServiceMgr.cpp │ ├── CSqlServiceMgr.h │ ├── CUtilSql.cpp │ └── CUtilSql.h │ ├── OptRecords │ ├── CRcdLogClient.cpp │ ├── CRcdLogClient.h │ ├── CRcdServiceMgr.cpp │ └── CRcdServiceMgr.h │ ├── Redis │ ├── CRedisClient.cpp │ ├── CRedisClient.h │ ├── CRedisServiceMgr.cpp │ ├── CRedisServiceMgr.h │ ├── CUtilRedis.cpp │ └── CUtilRedis.h │ ├── Request │ ├── CHttpParse.cpp │ ├── CHttpParse.h │ ├── CHttpReply.cpp │ ├── CHttpReply.h │ ├── CMgrRequest.cpp │ ├── CMgrRequest.h │ ├── CObjPoolTmpl.h │ ├── CReqHandlerObj.cpp │ ├── CReqHandlerObj.h │ ├── HttpCommon.h │ └── jsoncpp │ │ ├── include │ │ └── json │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ └── writer.h │ │ └── lib │ │ └── libjson_libmt.a │ ├── WLog │ ├── internallock.h │ ├── wLog.cpp │ └── wLog.h │ └── main.cpp ├── MemPool ├── Makefile ├── MemChunk.h ├── MemPool.vcxproj ├── MemPool.vcxproj.filters ├── MemPool.vcxproj.user ├── MemoryPool.h ├── READEM.txt ├── TestObj.h ├── TestPool.h └── main.cpp ├── SSLTestC ├── Makefile ├── SSLTestC.vcxproj ├── SSLTestC.vcxproj.filters ├── SSLTestC.vcxproj.user ├── TestMain.cpp └── client │ ├── ca.crt │ ├── client.crt │ └── client.key └── openssl ├── include └── openssl │ ├── aes.h │ ├── applink.c │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h └── lib ├── engines ├── 4758cca.dll ├── aep.dll ├── atalla.dll ├── capi.dll ├── chil.dll ├── cswift.dll ├── gmp.dll ├── gost.dll ├── nuron.dll ├── padlock.dll ├── sureware.dll └── ubsec.dll ├── libeay32.lib ├── libeay32b.lib ├── ssleay32.lib └── ssleay32b.lib /MainServer/MainServer/Debug/4758cca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/4758cca.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/aep.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/aep.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/atalla.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/atalla.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/capi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/capi.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/chil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/chil.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/cswift.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/cswift.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/gmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/gmp.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/gost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/gost.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/libeay32.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/libmysql.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/nuron.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/nuron.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/padlock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/padlock.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/pthreadVC1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/pthreadVC1.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/ssleay32.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/sureware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/sureware.dll -------------------------------------------------------------------------------- /MainServer/MainServer/Debug/ubsec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/Debug/ubsec.dll -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer.sln -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/MainServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/MainServer.vcxproj -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/MainServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/MainServer.vcxproj.filters -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/MainServer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/MainServer.vcxproj.user -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/server.conf -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/server/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/server/ca.crt -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/server/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/server/server.crt -------------------------------------------------------------------------------- /MainServer/MainServer/MainServer/server/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/MainServer/MainServer/server/server.key -------------------------------------------------------------------------------- /MainServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/Makefile -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/.gitignore -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/CHANGELOG.md -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/COPYING -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/Makefile -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/README.md -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/adapters/ae.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/adapters/libev.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/adapters/libevent.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/async.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/async.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/config.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/dict.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/dict.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/example-ae.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/example-libev.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/example-libevent.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/example.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/fmacros.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/hiredis.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/hiredis.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/net.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/net.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/sds.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/sds.h -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/test.c -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/example/example.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/example/example.vcproj -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/example/example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/example/example.vcxproj -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/example/hiredis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/example/hiredis.lib -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/hiredis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/hiredis.sln -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/hiredis.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/hiredis.sln.old -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/hiredis.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/hiredis.vcproj -------------------------------------------------------------------------------- /MainServer/hiredis-win32-master/win32/hiredis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/hiredis-win32-master/win32/hiredis.vcxproj -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/buffer.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/buffer_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/buffer_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/bufferevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/bufferevent.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/bufferevent_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/bufferevent_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/bufferevent_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/bufferevent_ssl.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/bufferevent_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/bufferevent_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/dns.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/dns_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/dns_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/dns_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/dns_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/event-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/event-config.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/event.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/event_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/event_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/event_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/event_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/http.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/http_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/http_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/http_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/http_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/keyvalq_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/keyvalq_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/listener.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/rpc.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/rpc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/rpc_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/rpc_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/rpc_struct.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/tag.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/tag_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/tag_compat.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/thread.h -------------------------------------------------------------------------------- /MainServer/libevent/include/event2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/event2/util.h -------------------------------------------------------------------------------- /MainServer/libevent/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/include/tree.h -------------------------------------------------------------------------------- /MainServer/libevent/lib/32/libevent.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/32/libevent.lib -------------------------------------------------------------------------------- /MainServer/libevent/lib/32/libevent_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/32/libevent_core.lib -------------------------------------------------------------------------------- /MainServer/libevent/lib/32/libevent_extras.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/32/libevent_extras.lib -------------------------------------------------------------------------------- /MainServer/libevent/lib/64/libevent.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/64/libevent.lib -------------------------------------------------------------------------------- /MainServer/libevent/lib/64/libevent_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/64/libevent_core.lib -------------------------------------------------------------------------------- /MainServer/libevent/lib/64/libevent_extras.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libevent/lib/64/libevent_extras.lib -------------------------------------------------------------------------------- /MainServer/libhiredis/include/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libhiredis/include/hiredis.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/big_endian.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/byte_order_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/byte_order_generic.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/byte_order_generic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/byte_order_generic_x86.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/decimal.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/errmsg.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/keycache.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/little_endian.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/m_ctype.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/m_string.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_alloc.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_byteorder.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_compiler.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_config.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_dbug.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_dir.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_getopt.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_global.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_list.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_pthread.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_sys.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/my_xml.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/client_authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/client_authentication.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/client_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/client_plugin.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/client_plugin.h.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/client_plugin.h.pp -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/get_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/get_password.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/plugin_auth_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/plugin_auth_common.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/plugin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/plugin_trace.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_file.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_idle.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_mdl.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_memory.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_ps.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_socket.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_sp.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_stage.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_statement.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_table.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_thread.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/mysql_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/mysql_transaction.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/psi.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/psi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/psi_base.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/psi/psi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/psi/psi_memory.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/service_my_snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/service_my_snprintf.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql/service_mysql_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql/service_mysql_alloc.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql_com.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql_com_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql_com_server.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql_embed.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql_time.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysql_version.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysqld_ername.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/mysqld_error.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/sql_common.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/sql_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/sql_state.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/sslopt-case.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/sslopt-longopts.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/sslopt-vars.h -------------------------------------------------------------------------------- /MainServer/libmysql/include/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/include/typelib.h -------------------------------------------------------------------------------- /MainServer/libmysql/lib/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/lib/libmysql.dll -------------------------------------------------------------------------------- /MainServer/libmysql/lib/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/lib/libmysql.lib -------------------------------------------------------------------------------- /MainServer/libmysql/lib/vs10/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/lib/vs10/mysqlclient.lib -------------------------------------------------------------------------------- /MainServer/libmysql/lib/vs11/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/lib/vs11/mysqlclient.lib -------------------------------------------------------------------------------- /MainServer/libmysql/lib/vs12/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/libmysql/lib/vs12/mysqlclient.lib -------------------------------------------------------------------------------- /MainServer/pthreads-win32/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/include/pthread.h -------------------------------------------------------------------------------- /MainServer/pthreads-win32/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/include/sched.h -------------------------------------------------------------------------------- /MainServer/pthreads-win32/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/include/semaphore.h -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadGC1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadGC1.dll -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadGCE1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadGCE1.dll -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadVC1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadVC1.dll -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadVC1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadVC1.lib -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadVSE1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadVSE1.dll -------------------------------------------------------------------------------- /MainServer/pthreads-win32/lib/pthreadVSE1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/pthreads-win32/lib/pthreadVSE1.lib -------------------------------------------------------------------------------- /MainServer/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server.conf -------------------------------------------------------------------------------- /MainServer/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server.pem -------------------------------------------------------------------------------- /MainServer/server/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server/ca.crt -------------------------------------------------------------------------------- /MainServer/server/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server/server.crt -------------------------------------------------------------------------------- /MainServer/server/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server/server.key -------------------------------------------------------------------------------- /MainServer/server_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/server_start.sh -------------------------------------------------------------------------------- /MainServer/source/Common/CommStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/CommStruct.h -------------------------------------------------------------------------------- /MainServer/source/Common/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/Common.cpp -------------------------------------------------------------------------------- /MainServer/source/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/Common.h -------------------------------------------------------------------------------- /MainServer/source/Common/Locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/Locker.cpp -------------------------------------------------------------------------------- /MainServer/source/Common/MemoryPoolObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/MemoryPoolObj.cpp -------------------------------------------------------------------------------- /MainServer/source/Common/MemoryPoolObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/MemoryPoolObj.h -------------------------------------------------------------------------------- /MainServer/source/Common/locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/locker.h -------------------------------------------------------------------------------- /MainServer/source/Common/nocopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Common/nocopyable.h -------------------------------------------------------------------------------- /MainServer/source/Config/CConfiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Config/CConfiger.cpp -------------------------------------------------------------------------------- /MainServer/source/Config/CConfiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Config/CConfiger.h -------------------------------------------------------------------------------- /MainServer/source/Connection/CEventBaseMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Connection/CEventBaseMgr.cpp -------------------------------------------------------------------------------- /MainServer/source/Connection/CEventBaseMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Connection/CEventBaseMgr.h -------------------------------------------------------------------------------- /MainServer/source/Connection/CMainEventBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Connection/CMainEventBase.cpp -------------------------------------------------------------------------------- /MainServer/source/Connection/CMainEventBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Connection/CMainEventBase.h -------------------------------------------------------------------------------- /MainServer/source/Mysql/CField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CField.cpp -------------------------------------------------------------------------------- /MainServer/source/Mysql/CField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CField.h -------------------------------------------------------------------------------- /MainServer/source/Mysql/CRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CRecord.cpp -------------------------------------------------------------------------------- /MainServer/source/Mysql/CRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CRecord.h -------------------------------------------------------------------------------- /MainServer/source/Mysql/CSqlClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CSqlClient.cpp -------------------------------------------------------------------------------- /MainServer/source/Mysql/CSqlClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CSqlClient.h -------------------------------------------------------------------------------- /MainServer/source/Mysql/CSqlServiceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CSqlServiceMgr.cpp -------------------------------------------------------------------------------- /MainServer/source/Mysql/CSqlServiceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CSqlServiceMgr.h -------------------------------------------------------------------------------- /MainServer/source/Mysql/CUtilSql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CUtilSql.cpp -------------------------------------------------------------------------------- /MainServer/source/Mysql/CUtilSql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Mysql/CUtilSql.h -------------------------------------------------------------------------------- /MainServer/source/OptRecords/CRcdLogClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/OptRecords/CRcdLogClient.cpp -------------------------------------------------------------------------------- /MainServer/source/OptRecords/CRcdLogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/OptRecords/CRcdLogClient.h -------------------------------------------------------------------------------- /MainServer/source/OptRecords/CRcdServiceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/OptRecords/CRcdServiceMgr.cpp -------------------------------------------------------------------------------- /MainServer/source/OptRecords/CRcdServiceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/OptRecords/CRcdServiceMgr.h -------------------------------------------------------------------------------- /MainServer/source/Redis/CRedisClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CRedisClient.cpp -------------------------------------------------------------------------------- /MainServer/source/Redis/CRedisClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CRedisClient.h -------------------------------------------------------------------------------- /MainServer/source/Redis/CRedisServiceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CRedisServiceMgr.cpp -------------------------------------------------------------------------------- /MainServer/source/Redis/CRedisServiceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CRedisServiceMgr.h -------------------------------------------------------------------------------- /MainServer/source/Redis/CUtilRedis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CUtilRedis.cpp -------------------------------------------------------------------------------- /MainServer/source/Redis/CUtilRedis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Redis/CUtilRedis.h -------------------------------------------------------------------------------- /MainServer/source/Request/CHttpParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CHttpParse.cpp -------------------------------------------------------------------------------- /MainServer/source/Request/CHttpParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CHttpParse.h -------------------------------------------------------------------------------- /MainServer/source/Request/CHttpReply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CHttpReply.cpp -------------------------------------------------------------------------------- /MainServer/source/Request/CHttpReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CHttpReply.h -------------------------------------------------------------------------------- /MainServer/source/Request/CMgrRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CMgrRequest.cpp -------------------------------------------------------------------------------- /MainServer/source/Request/CMgrRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CMgrRequest.h -------------------------------------------------------------------------------- /MainServer/source/Request/CObjPoolTmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CObjPoolTmpl.h -------------------------------------------------------------------------------- /MainServer/source/Request/CReqHandlerObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CReqHandlerObj.cpp -------------------------------------------------------------------------------- /MainServer/source/Request/CReqHandlerObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/CReqHandlerObj.h -------------------------------------------------------------------------------- /MainServer/source/Request/HttpCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/HttpCommon.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/autolink.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/features.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /MainServer/source/Request/jsoncpp/lib/libjson_libmt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/Request/jsoncpp/lib/libjson_libmt.a -------------------------------------------------------------------------------- /MainServer/source/WLog/internallock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/WLog/internallock.h -------------------------------------------------------------------------------- /MainServer/source/WLog/wLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/WLog/wLog.cpp -------------------------------------------------------------------------------- /MainServer/source/WLog/wLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/WLog/wLog.h -------------------------------------------------------------------------------- /MainServer/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MainServer/source/main.cpp -------------------------------------------------------------------------------- /MemPool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/Makefile -------------------------------------------------------------------------------- /MemPool/MemChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/MemChunk.h -------------------------------------------------------------------------------- /MemPool/MemPool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/MemPool.vcxproj -------------------------------------------------------------------------------- /MemPool/MemPool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/MemPool.vcxproj.filters -------------------------------------------------------------------------------- /MemPool/MemPool.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/MemPool.vcxproj.user -------------------------------------------------------------------------------- /MemPool/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/MemoryPool.h -------------------------------------------------------------------------------- /MemPool/READEM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/READEM.txt -------------------------------------------------------------------------------- /MemPool/TestObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/TestObj.h -------------------------------------------------------------------------------- /MemPool/TestPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/TestPool.h -------------------------------------------------------------------------------- /MemPool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/MemPool/main.cpp -------------------------------------------------------------------------------- /SSLTestC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/Makefile -------------------------------------------------------------------------------- /SSLTestC/SSLTestC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/SSLTestC.vcxproj -------------------------------------------------------------------------------- /SSLTestC/SSLTestC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/SSLTestC.vcxproj.filters -------------------------------------------------------------------------------- /SSLTestC/SSLTestC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/SSLTestC.vcxproj.user -------------------------------------------------------------------------------- /SSLTestC/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/TestMain.cpp -------------------------------------------------------------------------------- /SSLTestC/client/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/client/ca.crt -------------------------------------------------------------------------------- /SSLTestC/client/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/client/client.crt -------------------------------------------------------------------------------- /SSLTestC/client/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/SSLTestC/client/client.key -------------------------------------------------------------------------------- /openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/aes.h -------------------------------------------------------------------------------- /openssl/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/applink.c -------------------------------------------------------------------------------- /openssl/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/asn1.h -------------------------------------------------------------------------------- /openssl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /openssl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/asn1t.h -------------------------------------------------------------------------------- /openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/bio.h -------------------------------------------------------------------------------- /openssl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/blowfish.h -------------------------------------------------------------------------------- /openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /openssl/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/buffer.h -------------------------------------------------------------------------------- /openssl/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/camellia.h -------------------------------------------------------------------------------- /openssl/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/cast.h -------------------------------------------------------------------------------- /openssl/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/cmac.h -------------------------------------------------------------------------------- /openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/cms.h -------------------------------------------------------------------------------- /openssl/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/comp.h -------------------------------------------------------------------------------- /openssl/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/conf.h -------------------------------------------------------------------------------- /openssl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/conf_api.h -------------------------------------------------------------------------------- /openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/crypto.h -------------------------------------------------------------------------------- /openssl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/des.h -------------------------------------------------------------------------------- /openssl/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/des_old.h -------------------------------------------------------------------------------- /openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/dh.h -------------------------------------------------------------------------------- /openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/dsa.h -------------------------------------------------------------------------------- /openssl/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/dso.h -------------------------------------------------------------------------------- /openssl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/dtls1.h -------------------------------------------------------------------------------- /openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/e_os2.h -------------------------------------------------------------------------------- /openssl/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ec.h -------------------------------------------------------------------------------- /openssl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ecdh.h -------------------------------------------------------------------------------- /openssl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /openssl/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/engine.h -------------------------------------------------------------------------------- /openssl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/err.h -------------------------------------------------------------------------------- /openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/evp.h -------------------------------------------------------------------------------- /openssl/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/hmac.h -------------------------------------------------------------------------------- /openssl/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/idea.h -------------------------------------------------------------------------------- /openssl/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /openssl/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/kssl.h -------------------------------------------------------------------------------- /openssl/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/lhash.h -------------------------------------------------------------------------------- /openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/md4.h -------------------------------------------------------------------------------- /openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/md5.h -------------------------------------------------------------------------------- /openssl/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/mdc2.h -------------------------------------------------------------------------------- /openssl/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/modes.h -------------------------------------------------------------------------------- /openssl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /openssl/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/objects.h -------------------------------------------------------------------------------- /openssl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ocsp.h -------------------------------------------------------------------------------- /openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/pem.h -------------------------------------------------------------------------------- /openssl/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/pem2.h -------------------------------------------------------------------------------- /openssl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /openssl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /openssl/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/pqueue.h -------------------------------------------------------------------------------- /openssl/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/rand.h -------------------------------------------------------------------------------- /openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/rc2.h -------------------------------------------------------------------------------- /openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/rc4.h -------------------------------------------------------------------------------- /openssl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ripemd.h -------------------------------------------------------------------------------- /openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/rsa.h -------------------------------------------------------------------------------- /openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/safestack.h -------------------------------------------------------------------------------- /openssl/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/seed.h -------------------------------------------------------------------------------- /openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/srp.h -------------------------------------------------------------------------------- /openssl/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/srtp.h -------------------------------------------------------------------------------- /openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ssl.h -------------------------------------------------------------------------------- /openssl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ssl2.h -------------------------------------------------------------------------------- /openssl/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ssl23.h -------------------------------------------------------------------------------- /openssl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ssl3.h -------------------------------------------------------------------------------- /openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/stack.h -------------------------------------------------------------------------------- /openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/symhacks.h -------------------------------------------------------------------------------- /openssl/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/tls1.h -------------------------------------------------------------------------------- /openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ts.h -------------------------------------------------------------------------------- /openssl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/txt_db.h -------------------------------------------------------------------------------- /openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ui.h -------------------------------------------------------------------------------- /openssl/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /openssl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /openssl/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/x509.h -------------------------------------------------------------------------------- /openssl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /openssl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/include/openssl/x509v3.h -------------------------------------------------------------------------------- /openssl/lib/engines/4758cca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/4758cca.dll -------------------------------------------------------------------------------- /openssl/lib/engines/aep.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/aep.dll -------------------------------------------------------------------------------- /openssl/lib/engines/atalla.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/atalla.dll -------------------------------------------------------------------------------- /openssl/lib/engines/capi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/capi.dll -------------------------------------------------------------------------------- /openssl/lib/engines/chil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/chil.dll -------------------------------------------------------------------------------- /openssl/lib/engines/cswift.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/cswift.dll -------------------------------------------------------------------------------- /openssl/lib/engines/gmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/gmp.dll -------------------------------------------------------------------------------- /openssl/lib/engines/gost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/gost.dll -------------------------------------------------------------------------------- /openssl/lib/engines/nuron.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/nuron.dll -------------------------------------------------------------------------------- /openssl/lib/engines/padlock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/padlock.dll -------------------------------------------------------------------------------- /openssl/lib/engines/sureware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/sureware.dll -------------------------------------------------------------------------------- /openssl/lib/engines/ubsec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/engines/ubsec.dll -------------------------------------------------------------------------------- /openssl/lib/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/libeay32.lib -------------------------------------------------------------------------------- /openssl/lib/libeay32b.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/libeay32b.lib -------------------------------------------------------------------------------- /openssl/lib/ssleay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/ssleay32.lib -------------------------------------------------------------------------------- /openssl/lib/ssleay32b.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqinguo/NetServer/HEAD/openssl/lib/ssleay32b.lib --------------------------------------------------------------------------------