docs: node: point at telnet module now (#3489)
* docs: node: point at telnet module now
See 8d091c476e
* Fix links
Co-authored-by: Marcel Stör <marcelstoer@users.noreply.github.com>
This commit is contained in:
parent
48d7cf9daa
commit
5701347ff8
|
@ -340,7 +340,8 @@ Submits a string to the Lua interpreter. Similar to `pcall(loadstring(str))`, bu
|
||||||
```lua
|
```lua
|
||||||
sk:on("receive", function(conn, payload) node.input(payload) end)
|
sk:on("receive", function(conn, payload) node.input(payload) end)
|
||||||
```
|
```
|
||||||
See the `telnet/telnet.lua` in `lua_examples` for a more comprehensive example.
|
See [the telnet lua module](../lua-modules/telnet.md) for a working
|
||||||
|
example.
|
||||||
|
|
||||||
#### See also
|
#### See also
|
||||||
[`node.output()`](#nodeoutput)
|
[`node.output()`](#nodeoutput)
|
||||||
|
@ -420,7 +421,8 @@ Redirects the Lua interpreter to a `stdout` pipe when a CB function is specified
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
See the `telnet/telnet.lua` in `lua_examples` for a more comprehensive example of its use.
|
See [the telnet lua module](../lua-modules/telnet.md) for a working
|
||||||
|
example.
|
||||||
|
|
||||||
#### See also
|
#### See also
|
||||||
[`node.input()`](#nodeinput)
|
[`node.input()`](#nodeinput)
|
||||||
|
|
Loading…
Reference in New Issue