Expose ip and port in serve handle

This commit is contained in:
Filip Tibell 2024-02-16 13:14:30 +01:00
parent 53da0758e5
commit b526ccab9a
No known key found for this signature in database

View file

@ -340,6 +340,8 @@ pub async fn serve<'lua>(
});
TableBuilder::new(lua)?
.with_value("ip", addr.ip().to_string())?
.with_value("port", addr.port())?
.with_function("stop", move |lua, _: ()| match shutdown_tx.send(true) {
Ok(_) => Ok(()),
Err(_) => Err(LuaError::runtime("Server already stopped")),