mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-28 05:38:24 +00:00
149469515f
Squashed commit of the following: commit 6e1fea3b16bb330ed2862eb00d2e911221c48a34 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 22:16:02 2017 -0500 use the baked in address instead of sockaddr commit 84f2d389fd6352b3037f48c18d133d2f1063d461 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 22:05:57 2017 -0500 send replies commit c6733009cc5a25e58391c5fc693b277ea27404b3 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 21:53:12 2017 -0500 send replies commit a6816c9481f7ea89a3c97597233e54c6354716e7 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 21:46:55 2017 -0500 send replies commit c2453b73ccafbd53192507affbc11d5f279c2e7c Author: radius <andres.430@gmail.com> Date: Sat Nov 18 21:26:34 2017 -0500 look for common interfaces commit fb42e6470242689f5e6160149ef91f0f0abf068d Author: radius <andres.430@gmail.com> Date: Sat Nov 18 20:06:50 2017 -0500 send broadcasts in all interfaces commit b7730596df9775fb815007689e9c7cc06b317b03 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 20:00:17 2017 -0500 send broadcasts in all interfaces commit b620a78052d1b95e81d346f3e5efb233e0547793 Author: radius <andres.430@gmail.com> Date: Sat Nov 18 14:30:31 2017 -0500 add more logging commit c016c7d559cd631172a58f99cd3e1a1365965b8e Author: radius <andres.430@gmail.com> Date: Sat Nov 18 14:12:03 2017 -0500 update log messages commit 0a49ba61f56f2ca483fa76c7a04f0709c68b95ad Author: radius <andres.430@gmail.com> Date: Sat Nov 18 13:50:47 2017 -0500 fix lan room listing for rooms > 1, allow connecting in arbitrary ports
100 lines
2.6 KiB
C
100 lines
2.6 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2016-2017 - Gregor Richards
|
|
*
|
|
* RetroArch 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 Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch 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 RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef __RARCH_NETPLAY_DISCOVERY_H
|
|
#define __RARCH_NETPLAY_DISCOVERY_H
|
|
|
|
#include <net/net_compat.h>
|
|
#include <net/net_ifinfo.h>
|
|
#include <retro_miscellaneous.h>
|
|
|
|
#define NETPLAY_HOST_STR_LEN 32
|
|
#define NETPLAY_HOST_LONGSTR_LEN 256
|
|
|
|
enum rarch_netplay_discovery_ctl_state
|
|
{
|
|
RARCH_NETPLAY_DISCOVERY_CTL_NONE = 0,
|
|
RARCH_NETPLAY_DISCOVERY_CTL_LAN_SEND_QUERY,
|
|
RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES,
|
|
RARCH_NETPLAY_DISCOVERY_CTL_LAN_CLEAR_RESPONSES
|
|
};
|
|
|
|
struct netplay_host
|
|
{
|
|
struct sockaddr addr;
|
|
socklen_t addrlen;
|
|
|
|
char address[NETPLAY_HOST_STR_LEN];
|
|
char nick[NETPLAY_HOST_STR_LEN];
|
|
char core[NETPLAY_HOST_STR_LEN];
|
|
char core_version[NETPLAY_HOST_STR_LEN];
|
|
char retroarch_version[NETPLAY_HOST_STR_LEN];
|
|
char content[NETPLAY_HOST_LONGSTR_LEN];
|
|
int content_crc;
|
|
int port;
|
|
};
|
|
|
|
struct netplay_host_list
|
|
{
|
|
struct netplay_host *hosts;
|
|
size_t size;
|
|
};
|
|
|
|
enum netplay_host_method
|
|
{
|
|
NETPLAY_HOST_METHOD_UNKNOWN = 0,
|
|
NETPLAY_HOST_METHOD_MANUAL,
|
|
NETPLAY_HOST_METHOD_UPNP,
|
|
NETPLAY_HOST_METHOD_MITM
|
|
};
|
|
|
|
struct netplay_room
|
|
{
|
|
char nickname [PATH_MAX_LENGTH];
|
|
char address [PATH_MAX_LENGTH];
|
|
char mitm_address[PATH_MAX_LENGTH];
|
|
int port;
|
|
int mitm_port;
|
|
char corename [PATH_MAX_LENGTH];
|
|
char coreversion [PATH_MAX_LENGTH];
|
|
char gamename [PATH_MAX_LENGTH];
|
|
int gamecrc;
|
|
int timestamp;
|
|
int host_method;
|
|
bool has_password;
|
|
bool has_spectate_password;
|
|
bool lan;
|
|
bool fixed;
|
|
char retroarch_version[PATH_MAX_LENGTH];
|
|
char country[PATH_MAX_LENGTH];
|
|
struct netplay_room *next;
|
|
};
|
|
|
|
extern struct netplay_room *netplay_room_list;
|
|
|
|
extern int netplay_room_count;
|
|
|
|
/** Initialize Netplay discovery */
|
|
bool init_netplay_discovery(void);
|
|
|
|
/** Deinitialize and free Netplay discovery */
|
|
void deinit_netplay_discovery(void);
|
|
|
|
/** Discovery control */
|
|
bool netplay_discovery_driver_ctl(enum rarch_netplay_discovery_ctl_state state, void *data);
|
|
|
|
#endif
|