the proxy UUID parameter is not set in the Lua Proxy Class.
This patches adds it.
Contain the name of the proxy.
+.. js:attribute:: Proxy.uuid
+
+ Contain the unique identifier of the proxy.
+
.. js:attribute:: Proxy.servers
Contain an array with the attached servers. Each server entry is an object of
lua_pushstring(L, px->id);
lua_settable(L, -3);
+ /* Add proxy uuid. */
+ lua_pushstring(L, "uuid");
+ snprintf(buffer, sizeof(buffer), "%d", px->uuid);
+ lua_pushstring(L, buffer);
+ lua_settable(L, -3);
+
/* Browse and register servers. */
lua_pushstring(L, "servers");
lua_newtable(L);