mirror of
https://github.com/ShadowKatStudios/OC-Minitel.git
synced 2024-11-15 23:08:06 +11:00
20 lines
617 B
Plaintext
20 lines
617 B
Plaintext
# RPC
|
|
Minitel Remote Procedure Call Library
|
|
|
|
## API
|
|
In all instances, if *hostname* is replaced with *localhost*, an attempt will be made to call the registered procedure on the local machine.
|
|
|
|
### rpc.call(*hostname*, *name*, ...)
|
|
Call function *name* on remote host *hostname* with arguments ...
|
|
|
|
### rpc.proxy(*hostname*, *filter*)
|
|
Return a table containing the functions on *hostname* matching *filter*, which is a Lua pattern.
|
|
|
|
### rpc.register(*name*, *function*)
|
|
Registers *function* as the RPC call for *name* on the current host.
|
|
|
|
## Variables
|
|
|
|
### rpc.port = 111
|
|
Port to use for RPC calls and registration.
|