mirror of
https://github.com/ShadowKatStudios/OC-Minitel.git
synced 2024-11-01 08:10:56 +11:00
set RPC client environment variable
This commit is contained in:
parent
3a6cad78b5
commit
f30cdef8c0
@ -66,6 +66,7 @@ function rpc.register(name,fn)
|
|||||||
if port == rpc.port then
|
if port == rpc.port then
|
||||||
local rpcrq = serial.unserialize(data)
|
local rpcrq = serial.unserialize(data)
|
||||||
if rpcf[rpcrq[1]] and isPermitted(from,rpcrq[1]) then
|
if rpcf[rpcrq[1]] and isPermitted(from,rpcrq[1]) then
|
||||||
|
os.setenv("RPC_CLIENT", from)
|
||||||
minitel.send(from,port,serial.serialize({rpcrq[2],pcall(rpcf[rpcrq[1]],table.unpack(rpcrq,3))}))
|
minitel.send(from,port,serial.serialize({rpcrq[2],pcall(rpcf[rpcrq[1]],table.unpack(rpcrq,3))}))
|
||||||
elseif type(rpcrq[2]) == "string" then
|
elseif type(rpcrq[2]) == "string" then
|
||||||
minitel.send(from,port,serial.serialize({rpcrq[2],false,"function unavailable"}))
|
minitel.send(from,port,serial.serialize({rpcrq[2],false,"function unavailable"}))
|
||||||
|
Loading…
Reference in New Issue
Block a user