2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-12-25 12:20:51 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
2018-04-17 14:54:50 +01:00
|
|
|
#include "content/mods.h"
|
2023-03-25 19:48:50 +01:00
|
|
|
#include "json-forwards.h"
|
|
|
|
#include <iostream>
|
2024-06-21 16:33:44 -05:00
|
|
|
#include "network/lan.h"
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2024-01-24 19:13:03 +01:00
|
|
|
// Note that client serverlist handling is all in Lua, this is only announcements now.
|
|
|
|
|
2012-12-25 12:20:51 +01:00
|
|
|
namespace ServerList
|
|
|
|
{
|
2024-06-21 16:33:44 -05:00
|
|
|
extern lan_adv lan_adv_client;
|
|
|
|
void lan_get();
|
|
|
|
bool lan_fresh();
|
|
|
|
|
2015-10-15 13:04:15 -04:00
|
|
|
#if USE_CURL
|
|
|
|
enum AnnounceAction {AA_START, AA_UPDATE, AA_DELETE};
|
|
|
|
void sendAnnounce(AnnounceAction, u16 port,
|
|
|
|
const std::vector<std::string> &clients_names = std::vector<std::string>(),
|
|
|
|
double uptime = 0, u32 game_time = 0, float lag = 0,
|
|
|
|
const std::string &gameid = "", const std::string &mg_name = "",
|
|
|
|
const std::vector<ModSpec> &mods = std::vector<ModSpec>(),
|
|
|
|
bool dedicated = false);
|
|
|
|
#endif
|
|
|
|
|
2024-01-24 19:13:03 +01:00
|
|
|
}
|