update history

This commit is contained in:
Cloud Wu
2014-07-09 14:33:53 +08:00
parent d05859b766
commit 0855bf30d9
3 changed files with 11 additions and 5 deletions

8
.gitignore vendored
View File

@@ -1,10 +1,10 @@
*.o *.o
*.a *.a
./skynet /skynet
./skynet.pid /skynet.pid
3rd/lua/lua 3rd/lua/lua
3rd/lua/luac 3rd/lua/luac
./cservice /cservice
./luaclib /luaclib
*.so *.so
*.dSYM *.dSYM

View File

@@ -1,3 +1,9 @@
Dev version
-----------
* Bugfix : invalid negative socket id
* Add optional TCP_NODELAY support
* Add worker thread weight
v0.4.1 (2014-7-7) v0.4.1 (2014-7-7)
----------- -----------
* Add SERVICE_NAME in loader * Add SERVICE_NAME in loader

View File

@@ -33,8 +33,8 @@ function SOCKET.data(fd, msg)
end end
function CMD.start(conf) function CMD.start(conf)
skynet.call(gate, "lua", "open" , conf)
skynet.call(gate, "lua", "nodelay", true) skynet.call(gate, "lua", "nodelay", true)
skynet.call(gate, "lua", "open" , conf)
end end
skynet.start(function() skynet.start(function()