文件名称:lua_auth_plugin:Lua 的 Mosquitto 身份验证插件
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-20 15:29:02
C
lua_auth_plugin 是一个用 Lua 编写 Mosquitto 认证过程的插件。 基本配置和思路基于 。 安装 需要提前安装 Mosquitto 和 Lua。 另外,请根据各个环境适当修改Makefile链接的库路径和安装目的地。 cd lua_auth_plugin make make install 配置 将以下设置mosquitto.conf到mosquitto.conf 。 此外,通过独立添加auth_opt_* ,您可以添加可以在您自己的插件中引用的设置。 auth_plugin /path/to/lua_auth_plugin.so auth_opt_auth_file /path/to/your_auth_file.lua Lua 函数 在要创建的Lua文件中准备如下函数。 plugin_init(opts) : 在插件初始化时调用。 opts是mos
【文件预览】:
lua_auth_plugin-master
----Makefile(437B)
----testauth.lua(495B)
----README.md(2KB)
----lua_auth_plugin.c(5KB)