X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Frpc%2Fluasrc%2Fcontroller%2Frpc.lua;fp=modules%2Frpc%2Fluasrc%2Fcontroller%2Frpc.lua;h=7255c1780a2239dd3db045a6abec57c6738c4c93;hp=510a025d5ba8f3b1a0a01aac3aa8eeec206e1f39;hb=c4f70ce38a049acdfefb632f7778806192dcfe01;hpb=b5adeb6ba328a0a55b4c6dfe5e3db9344058e7b1 diff --git a/modules/rpc/luasrc/controller/rpc.lua b/modules/rpc/luasrc/controller/rpc.lua index 510a025d5..7255c1780 100644 --- a/modules/rpc/luasrc/controller/rpc.lua +++ b/modules/rpc/luasrc/controller/rpc.lua @@ -40,7 +40,6 @@ function index() rpc.notemplate = true entry({"rpc", "uci"}, call("rpc_uci")) - entry({"rpc", "uvl"}, call("rpc_uvl")) entry({"rpc", "fs"}, call("rpc_fs")) entry({"rpc", "sys"}, call("rpc_sys")) entry({"rpc", "ipkg"}, call("rpc_ipkg")) @@ -100,20 +99,6 @@ function rpc_uci() ltn12.pump.all(jsonrpc.handle(uci, http.source()), http.write) end -function rpc_uvl() - if not pcall(require, "luci.uvl") then - luci.http.status(404, "Not Found") - return nil - end - local uvl = require "luci.jsonrpcbind.uvl" - local jsonrpc = require "luci.jsonrpc" - local http = require "luci.http" - local ltn12 = require "luci.ltn12" - - http.prepare_content("application/json") - ltn12.pump.all(jsonrpc.handle(uvl, http.source()), http.write) -end - function rpc_fs() local util = require "luci.util" local io = require "io"