mirror of https://github.com/axmolengine/axmol.git
63 lines
1.8 KiB
Lua
63 lines
1.8 KiB
Lua
|
|
--------------------------------
|
|
-- @module Console
|
|
-- @extend Ref
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- starts listening to specified TCP port
|
|
-- @function [parent=#Console] listenOnTCP
|
|
-- @param self
|
|
-- @param #int port
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- log something in the console
|
|
-- @function [parent=#Console] log
|
|
-- @param self
|
|
-- @param #char buf
|
|
-- @return Console#Console self (return value: cc.Console)
|
|
|
|
--------------------------------
|
|
-- delete custom command
|
|
-- @function [parent=#Console] delCommand
|
|
-- @param self
|
|
-- @param #string cmdName
|
|
-- @return Console#Console self (return value: cc.Console)
|
|
|
|
--------------------------------
|
|
-- stops the Console. 'stop' will be called at destruction time as well
|
|
-- @function [parent=#Console] stop
|
|
-- @param self
|
|
-- @return Console#Console self (return value: cc.Console)
|
|
|
|
--------------------------------
|
|
-- starts listening to specified file descriptor
|
|
-- @function [parent=#Console] listenOnFileDescriptor
|
|
-- @param self
|
|
-- @param #int fd
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#Console] setCommandSeparator
|
|
-- @param self
|
|
-- @param #char var
|
|
-- @return Console#Console self (return value: cc.Console)
|
|
|
|
--------------------------------
|
|
-- set bind address<br>
|
|
-- address : 127.0.0.1
|
|
-- @function [parent=#Console] setBindAddress
|
|
-- @param self
|
|
-- @param #string address
|
|
-- @return Console#Console self (return value: cc.Console)
|
|
|
|
--------------------------------
|
|
-- Checks whether the server for console is bound with ipv6 address
|
|
-- @function [parent=#Console] isIpv6Server
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
return nil
|