/* 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 . */ #ifndef __RARCH_NETPLAY_DISCOVERY_H #define __RARCH_NETPLAY_DISCOVERY_H #include #include #define NETPLAY_HOST_STR_LEN 32 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 nick[NETPLAY_HOST_STR_LEN]; char core[NETPLAY_HOST_STR_LEN]; char core_version[NETPLAY_HOST_STR_LEN]; char content[NETPLAY_HOST_STR_LEN]; int content_crc; }; struct netplay_host_list { struct netplay_host *hosts; size_t size; }; /* data is ordered like this on the server, I left it in this ordered for reference */ struct netplay_room { char nickname [PATH_MAX_LENGTH]; char address [PATH_MAX_LENGTH]; int port; char corename [PATH_MAX_LENGTH]; char coreversion [PATH_MAX_LENGTH]; char gamename [PATH_MAX_LENGTH]; int gamecrc; int timestamp; }; 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