💾 Archived View for gemini.conman.org › extensions › port70 › handlers › MGLNDD.lua captured on 2024-12-17 at 12:38:53.

View Raw

More Information

⬅️ Previous capture (2024-06-16)

-=-=-=-=-=-=-

-- ************************************************************************
--
--    Make stupid requests, get stupid answers.
--    Copyright 2021 by Sean Conner.  All Rights Reserved.
--
--    This program is free software: you can redistribute it and/or modify
--    it under the terms of the GNU General Public License as published by
--    the Free Software Foundation, either version 3 of the License, or
--    (at your option) any later version.
--
--    This program is distributed in the hope that it will be useful,
--    but WITHOUT ANY WARRANTY; without even the implied warranty of
--    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--    GNU General Public License for more details.
--
--    You should have received a copy of the GNU General Public License
--    along with this program.  If not, see <http://www.gnu.org/licenses/>.
--
--    Comments, questions and criticisms can be sent to: sean@conman.org
--
-- ************************************************************************
-- luacheck: globals handler
-- luacheck: ignore 611

_ENV = {}

-- MGLNDD_71.19.142.20_70

function handler(_,_,ios)
  ios:write(("MGLNDD_%s_%d\r\n"):format(ios.__remote.addr,ios.__remote.port))
  return true
end

return _ENV