├── .gitignore ├── LICENSE ├── README.md ├── config.h ├── config.m4 ├── example ├── server.php └── www │ ├── form.html │ ├── index.html │ ├── webim │ ├── login.html │ ├── main.html │ └── resource │ │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap1.css │ │ ├── chat.css │ │ └── main.css │ │ ├── img │ │ ├── avatar1.jpg │ │ ├── button.gif │ │ ├── button.jpg │ │ ├── button1.jpg │ │ ├── button2.jpg │ │ ├── default.jpg │ │ ├── f1.png │ │ └── face │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ └── js │ │ ├── bootstrap.js │ │ ├── chat.js │ │ ├── jquery.js │ │ └── jquery.json.js │ ├── webqq │ ├── css │ │ └── style.css │ ├── images │ │ ├── QQ-ICON.png │ │ ├── body-bg.jpg │ │ ├── bot-menu │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ └── 16.png │ │ ├── box-bg.jpg │ │ ├── chat │ │ │ ├── fa.png │ │ │ ├── icon-00.png │ │ │ ├── icon-01.png │ │ │ ├── icon-02.png │ │ │ ├── icon-03.png │ │ │ ├── icon-04.png │ │ │ ├── icon-05.png │ │ │ ├── icon-06.png │ │ │ ├── icon-07.png │ │ │ ├── menu-01.png │ │ │ ├── menu-02.png │ │ │ ├── menu-03.png │ │ │ ├── menu-04.png │ │ │ ├── menu-05.png │ │ │ ├── menu-06.png │ │ │ ├── menu-07.png │ │ │ ├── menu-08.png │ │ │ ├── menu-09.png │ │ │ ├── menu-10.png │ │ │ ├── win.png │ │ │ └── wins.png │ │ ├── github.png │ │ ├── head │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 2.jpg │ │ │ ├── 20.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── icon-02-01.png │ │ ├── icon-02-02.png │ │ ├── icon-02-03.png │ │ ├── icon-02-04.png │ │ ├── login │ │ │ ├── head.jpg │ │ │ └── qq-login-bg.jpg │ │ ├── lv.png │ │ ├── qq-bg.jpg │ │ ├── qq-top-01.png │ │ ├── qq-top-02.png │ │ ├── qq-top.png │ │ ├── qq-xuan-jiao.png │ │ ├── serch.png │ │ ├── svip.png │ │ ├── top-menu.png │ │ ├── win-bg.png │ │ ├── win.png │ │ └── zai.png │ ├── index.html │ ├── js │ │ ├── index.js │ │ ├── jquery.cookie.js │ │ ├── jquery.js │ │ ├── jquery.json.js │ │ ├── nicescroll.js │ │ └── superslide.2.1.js │ └── register.html │ └── website │ ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css │ ├── img │ ├── qq.png │ └── return-back.png │ ├── index.html │ └── js │ ├── .jquery.min.js.swp │ ├── bootstrap.min.js │ └── jquery.min.js ├── include ├── appnet_dict.h ├── appnet_event.h ├── appnet_list.h ├── appnet_request.h ├── appnet_response.h ├── appnet_sds.h ├── appnet_server.h ├── appnet_socket.h ├── appnet_websocket.h ├── base64.h ├── config.h ├── mime_types.h ├── rbtree.h ├── ring_buffer.h ├── sha1.h ├── share_memory.h └── zmalloc.h ├── php_appnet.c ├── php_appnet.h ├── php_appnet_server.c └── src ├── appnet_dict.c ├── appnet_epoll.c ├── appnet_event.c ├── appnet_list.c ├── appnet_request.c ├── appnet_response.c ├── appnet_sds.c ├── appnet_select.c ├── appnet_server.c ├── appnet_socket.c ├── appnet_websocket.c ├── appnet_worker.c ├── base64.c ├── rbtree.c ├── ring_buffer.c ├── sha1.c ├── share_memory.c ├── test.c └── zmalloc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/config.h -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/config.m4 -------------------------------------------------------------------------------- /example/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/server.php -------------------------------------------------------------------------------- /example/www/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/form.html -------------------------------------------------------------------------------- /example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/index.html -------------------------------------------------------------------------------- /example/www/webim/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/login.html -------------------------------------------------------------------------------- /example/www/webim/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/main.html -------------------------------------------------------------------------------- /example/www/webim/resource/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/css/bootstrap.css -------------------------------------------------------------------------------- /example/www/webim/resource/css/bootstrap1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/css/bootstrap1.css -------------------------------------------------------------------------------- /example/www/webim/resource/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/css/chat.css -------------------------------------------------------------------------------- /example/www/webim/resource/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/css/main.css -------------------------------------------------------------------------------- /example/www/webim/resource/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/avatar1.jpg -------------------------------------------------------------------------------- /example/www/webim/resource/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/button.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/button.jpg -------------------------------------------------------------------------------- /example/www/webim/resource/img/button1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/button1.jpg -------------------------------------------------------------------------------- /example/www/webim/resource/img/button2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/button2.jpg -------------------------------------------------------------------------------- /example/www/webim/resource/img/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/default.jpg -------------------------------------------------------------------------------- /example/www/webim/resource/img/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/f1.png -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/1.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/10.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/11.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/12.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/13.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/14.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/15.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/16.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/17.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/18.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/19.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/2.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/3.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/4.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/5.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/6.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/7.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/8.gif -------------------------------------------------------------------------------- /example/www/webim/resource/img/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/img/face/9.gif -------------------------------------------------------------------------------- /example/www/webim/resource/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/js/bootstrap.js -------------------------------------------------------------------------------- /example/www/webim/resource/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/js/chat.js -------------------------------------------------------------------------------- /example/www/webim/resource/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/js/jquery.js -------------------------------------------------------------------------------- /example/www/webim/resource/js/jquery.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webim/resource/js/jquery.json.js -------------------------------------------------------------------------------- /example/www/webqq/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/css/style.css -------------------------------------------------------------------------------- /example/www/webqq/images/QQ-ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/QQ-ICON.png -------------------------------------------------------------------------------- /example/www/webqq/images/body-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/body-bg.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/01.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/02.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/03.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/04.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/05.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/06.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/07.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/08.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/09.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/10.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/11.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/12.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/13.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/14.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/15.png -------------------------------------------------------------------------------- /example/www/webqq/images/bot-menu/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/bot-menu/16.png -------------------------------------------------------------------------------- /example/www/webqq/images/box-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/box-bg.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/chat/fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/fa.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-00.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-01.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-02.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-03.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-04.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-05.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-06.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/icon-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/icon-07.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-01.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-02.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-03.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-04.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-05.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-06.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-07.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-08.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-09.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/menu-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/menu-10.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/win.png -------------------------------------------------------------------------------- /example/www/webqq/images/chat/wins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/chat/wins.png -------------------------------------------------------------------------------- /example/www/webqq/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/github.png -------------------------------------------------------------------------------- /example/www/webqq/images/head/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/1.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/10.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/11.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/12.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/13.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/14.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/15.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/16.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/17.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/18.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/19.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/2.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/20.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/3.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/4.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/5.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/6.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/7.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/8.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/head/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/head/9.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/icon-02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/icon-02-01.png -------------------------------------------------------------------------------- /example/www/webqq/images/icon-02-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/icon-02-02.png -------------------------------------------------------------------------------- /example/www/webqq/images/icon-02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/icon-02-03.png -------------------------------------------------------------------------------- /example/www/webqq/images/icon-02-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/icon-02-04.png -------------------------------------------------------------------------------- /example/www/webqq/images/login/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/login/head.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/login/qq-login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/login/qq-login-bg.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/lv.png -------------------------------------------------------------------------------- /example/www/webqq/images/qq-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/qq-bg.jpg -------------------------------------------------------------------------------- /example/www/webqq/images/qq-top-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/qq-top-01.png -------------------------------------------------------------------------------- /example/www/webqq/images/qq-top-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/qq-top-02.png -------------------------------------------------------------------------------- /example/www/webqq/images/qq-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/qq-top.png -------------------------------------------------------------------------------- /example/www/webqq/images/qq-xuan-jiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/qq-xuan-jiao.png -------------------------------------------------------------------------------- /example/www/webqq/images/serch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/serch.png -------------------------------------------------------------------------------- /example/www/webqq/images/svip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/svip.png -------------------------------------------------------------------------------- /example/www/webqq/images/top-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/top-menu.png -------------------------------------------------------------------------------- /example/www/webqq/images/win-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/win-bg.png -------------------------------------------------------------------------------- /example/www/webqq/images/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/win.png -------------------------------------------------------------------------------- /example/www/webqq/images/zai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/images/zai.png -------------------------------------------------------------------------------- /example/www/webqq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/index.html -------------------------------------------------------------------------------- /example/www/webqq/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/index.js -------------------------------------------------------------------------------- /example/www/webqq/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/jquery.cookie.js -------------------------------------------------------------------------------- /example/www/webqq/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/jquery.js -------------------------------------------------------------------------------- /example/www/webqq/js/jquery.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/jquery.json.js -------------------------------------------------------------------------------- /example/www/webqq/js/nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/nicescroll.js -------------------------------------------------------------------------------- /example/www/webqq/js/superslide.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/js/superslide.2.1.js -------------------------------------------------------------------------------- /example/www/webqq/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/webqq/register.html -------------------------------------------------------------------------------- /example/www/website/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /example/www/website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/css/bootstrap.min.css -------------------------------------------------------------------------------- /example/www/website/img/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/img/qq.png -------------------------------------------------------------------------------- /example/www/website/img/return-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/img/return-back.png -------------------------------------------------------------------------------- /example/www/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/index.html -------------------------------------------------------------------------------- /example/www/website/js/.jquery.min.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/js/.jquery.min.js.swp -------------------------------------------------------------------------------- /example/www/website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/js/bootstrap.min.js -------------------------------------------------------------------------------- /example/www/website/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/example/www/website/js/jquery.min.js -------------------------------------------------------------------------------- /include/appnet_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_dict.h -------------------------------------------------------------------------------- /include/appnet_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_event.h -------------------------------------------------------------------------------- /include/appnet_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_list.h -------------------------------------------------------------------------------- /include/appnet_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_request.h -------------------------------------------------------------------------------- /include/appnet_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_response.h -------------------------------------------------------------------------------- /include/appnet_sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_sds.h -------------------------------------------------------------------------------- /include/appnet_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_server.h -------------------------------------------------------------------------------- /include/appnet_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_socket.h -------------------------------------------------------------------------------- /include/appnet_websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/appnet_websocket.h -------------------------------------------------------------------------------- /include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/base64.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/config.h -------------------------------------------------------------------------------- /include/mime_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/mime_types.h -------------------------------------------------------------------------------- /include/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/rbtree.h -------------------------------------------------------------------------------- /include/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/ring_buffer.h -------------------------------------------------------------------------------- /include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/sha1.h -------------------------------------------------------------------------------- /include/share_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/share_memory.h -------------------------------------------------------------------------------- /include/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/include/zmalloc.h -------------------------------------------------------------------------------- /php_appnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/php_appnet.c -------------------------------------------------------------------------------- /php_appnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/php_appnet.h -------------------------------------------------------------------------------- /php_appnet_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/php_appnet_server.c -------------------------------------------------------------------------------- /src/appnet_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_dict.c -------------------------------------------------------------------------------- /src/appnet_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_epoll.c -------------------------------------------------------------------------------- /src/appnet_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_event.c -------------------------------------------------------------------------------- /src/appnet_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_list.c -------------------------------------------------------------------------------- /src/appnet_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_request.c -------------------------------------------------------------------------------- /src/appnet_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_response.c -------------------------------------------------------------------------------- /src/appnet_sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_sds.c -------------------------------------------------------------------------------- /src/appnet_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_select.c -------------------------------------------------------------------------------- /src/appnet_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_server.c -------------------------------------------------------------------------------- /src/appnet_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_socket.c -------------------------------------------------------------------------------- /src/appnet_websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_websocket.c -------------------------------------------------------------------------------- /src/appnet_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/appnet_worker.c -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/rbtree.c -------------------------------------------------------------------------------- /src/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/ring_buffer.c -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/share_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/share_memory.c -------------------------------------------------------------------------------- /src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/test.c -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uther518/appnet/HEAD/src/zmalloc.c --------------------------------------------------------------------------------