blob: 14bb7c0ae1025eaff2e0e47ffeef0c9d2532c1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---@meta
---@class cc.Console :cc.Ref
local Console={ }
cc.Console=Console
---* starts listening to specified TCP port
---@param port int
---@return boolean
function Console:listenOnTCP (port) end
---* log something in the console
---@param buf char
---@return self
function Console:log (buf) end
---* delete custom command
---@param cmdName string
---@return self
function Console:delCommand (cmdName) end
---* stops the Console. 'stop' will be called at destruction time as well
---@return self
function Console:stop () end
---* starts listening to specified file descriptor
---@param fd int
---@return boolean
function Console:listenOnFileDescriptor (fd) end
---*
---@param var char
---@return self
function Console:setCommandSeparator (var) end
---* set bind address<br>
---* address : 127.0.0.1
---@param address string
---@return self
function Console:setBindAddress (address) end
---* Checks whether the server for console is bound with ipv6 address
---@return boolean
function Console:isIpv6Server () end
|