├── README.md ├── document ├── ACE-6.2.0.tar.bz2 └── Teaf(isgw)框架设计和使用说明书.doc └── trunk └── teaf(isgw) ├── LICENSE.TXT ├── bin ├── keeper.sh ├── start.sh └── tools.inc ├── client ├── client.cpp ├── conn.php ├── makefile ├── server.cpp └── test.sh ├── comm ├── asy_prot.h ├── cmd_amount_contrl.cpp ├── cmd_amount_contrl.h ├── ibc_oper_base.cpp ├── ibc_oper_base.h ├── ibc_oper_fac.h ├── ibc_prot.h ├── isgw.stat.cfg ├── isgw_comm.cpp ├── isgw_comm.h ├── isgw_oper_base.cpp ├── isgw_oper_base.h ├── isgw_proxy.cpp ├── isgw_proxy.h ├── isgw_task_base.cpp ├── isgw_task_base.h ├── lua_oper.cpp ├── lua_oper.h ├── makefile.stat ├── plat_conn_mgr_asy.cpp ├── plat_conn_mgr_asy.h ├── plat_conn_mgr_ex.cpp ├── plat_conn_mgr_ex.h ├── plat_db_access.cpp ├── plat_db_access.h ├── plat_db_conn.cpp ├── plat_db_conn.h ├── pp_prot.h ├── qmode_msg.cpp ├── qmode_msg.h ├── rds_access.cpp ├── rds_access.h ├── readme.stat ├── shm_bitmap_manager.cpp ├── shm_bitmap_manager.h ├── stat.cpp ├── stat.h ├── sys_comm.cpp └── sys_comm.h ├── dll ├── dll_impl.cpp ├── dll_impl.h ├── dll_test.cpp ├── oper.cpp └── oper.h ├── easyace ├── ace_all.h ├── ace_app.cpp ├── ace_app.h ├── ace_conf.cpp ├── ace_conf.h ├── ace_object_array.cpp ├── ace_object_array.h ├── ace_object_que.cpp ├── ace_object_que.h ├── ace_svc.cpp ├── ace_svc.h ├── easyace.dsp ├── easyace.dsw ├── easyace_all.h ├── makefile └── readme.txt ├── frm ├── ace_sock_hdr_base.cpp ├── ace_sock_hdr_base.h ├── asy_task.cpp ├── asy_task.h ├── ibc_mgr_svc.cpp ├── ibc_mgr_svc.h ├── isgw_ack.cpp ├── isgw_ack.h ├── isgw_app.cpp ├── isgw_app.h ├── isgw_cintf.cpp ├── isgw_cintf.h ├── isgw_intf.cpp ├── isgw_intf.h ├── isgw_mgr_svc.cpp ├── isgw_mgr_svc.h ├── isgw_sighdl.cpp ├── isgw_sighdl.h ├── isgw_svrd.cpp ├── isgw_uintf.cpp └── isgw_uintf.h ├── install.sh ├── readme.txt ├── sql └── init.sql └── svr ├── admin_proxy_sync.cpp ├── admin_proxy_sync.h ├── ibc_oper_fac.cpp ├── isgw_config.h ├── isgw_svrd.ini ├── makefile ├── pdb_oper.cpp ├── pdb_oper.h ├── pdb_prot.h ├── start.sh ├── svrs.ini ├── temp_proxy.cpp └── temp_proxy.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/README.md -------------------------------------------------------------------------------- /document/ACE-6.2.0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/document/ACE-6.2.0.tar.bz2 -------------------------------------------------------------------------------- /document/Teaf(isgw)框架设计和使用说明书.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/document/Teaf(isgw)框架设计和使用说明书.doc -------------------------------------------------------------------------------- /trunk/teaf(isgw)/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/LICENSE.TXT -------------------------------------------------------------------------------- /trunk/teaf(isgw)/bin/keeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/bin/keeper.sh -------------------------------------------------------------------------------- /trunk/teaf(isgw)/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/bin/start.sh -------------------------------------------------------------------------------- /trunk/teaf(isgw)/bin/tools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/bin/tools.inc -------------------------------------------------------------------------------- /trunk/teaf(isgw)/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/client/client.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/client/conn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/client/conn.php -------------------------------------------------------------------------------- /trunk/teaf(isgw)/client/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/client/makefile -------------------------------------------------------------------------------- /trunk/teaf(isgw)/client/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/client/server.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/client/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/client/test.sh -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/asy_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/asy_prot.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/cmd_amount_contrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/cmd_amount_contrl.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/cmd_amount_contrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/cmd_amount_contrl.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/ibc_oper_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/ibc_oper_base.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/ibc_oper_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/ibc_oper_base.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/ibc_oper_fac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/ibc_oper_fac.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/ibc_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/ibc_prot.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw.stat.cfg: -------------------------------------------------------------------------------- 1 | isgw sub-system 2 | reqs of cmd ISGW_TEST -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_comm.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_comm.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_oper_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_oper_base.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_oper_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_oper_base.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_proxy.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_proxy.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_task_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_task_base.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/isgw_task_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/isgw_task_base.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/lua_oper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/lua_oper.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/lua_oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/lua_oper.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/makefile.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/makefile.stat -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_conn_mgr_asy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_conn_mgr_asy.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_conn_mgr_asy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_conn_mgr_asy.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_conn_mgr_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_conn_mgr_ex.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_conn_mgr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_conn_mgr_ex.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_db_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_db_access.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_db_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_db_access.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_db_conn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_db_conn.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/plat_db_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/plat_db_conn.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/pp_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/pp_prot.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/qmode_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/qmode_msg.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/qmode_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/qmode_msg.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/rds_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/rds_access.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/rds_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/rds_access.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/readme.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/readme.stat -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/shm_bitmap_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/shm_bitmap_manager.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/shm_bitmap_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/shm_bitmap_manager.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/stat.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/stat.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/sys_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/sys_comm.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/comm/sys_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/comm/sys_comm.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/dll/dll_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/dll/dll_impl.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/dll/dll_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/dll/dll_impl.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/dll/dll_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/dll/dll_test.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/dll/oper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/dll/oper.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/dll/oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/dll/oper.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_all.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_app.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_app.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_conf.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_conf.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_object_array.cpp: -------------------------------------------------------------------------------- 1 | #include "ace_object_array.h" 2 | -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_object_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_object_array.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_object_que.cpp: -------------------------------------------------------------------------------- 1 | #include "ace_object_que.h" 2 | -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_object_que.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_object_que.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_svc.cpp: -------------------------------------------------------------------------------- 1 | #include "ace_svc.h" 2 | -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/ace_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/ace_svc.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/easyace.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/easyace.dsp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/easyace.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/easyace.dsw -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/easyace_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/easyace_all.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/makefile -------------------------------------------------------------------------------- /trunk/teaf(isgw)/easyace/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/easyace/readme.txt -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/ace_sock_hdr_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/ace_sock_hdr_base.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/ace_sock_hdr_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/ace_sock_hdr_base.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/asy_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/asy_task.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/asy_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/asy_task.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/ibc_mgr_svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/ibc_mgr_svc.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/ibc_mgr_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/ibc_mgr_svc.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_ack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_ack.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_ack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_ack.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_app.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_app.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_cintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_cintf.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_cintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_cintf.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_intf.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_intf.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_mgr_svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_mgr_svc.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_mgr_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_mgr_svc.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_sighdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_sighdl.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_sighdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_sighdl.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_svrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_svrd.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_uintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_uintf.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/frm/isgw_uintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/frm/isgw_uintf.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/install.sh -------------------------------------------------------------------------------- /trunk/teaf(isgw)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/readme.txt -------------------------------------------------------------------------------- /trunk/teaf(isgw)/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/sql/init.sql -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/admin_proxy_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/admin_proxy_sync.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/admin_proxy_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/admin_proxy_sync.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/ibc_oper_fac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/ibc_oper_fac.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/isgw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/isgw_config.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/isgw_svrd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/isgw_svrd.ini -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/makefile -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/pdb_oper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/pdb_oper.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/pdb_oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/pdb_oper.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/pdb_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/pdb_prot.h -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/start.sh -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/svrs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/svrs.ini -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/temp_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/temp_proxy.cpp -------------------------------------------------------------------------------- /trunk/teaf(isgw)/svr/temp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentOpen/Teaf/HEAD/trunk/teaf(isgw)/svr/temp_proxy.h --------------------------------------------------------------------------------