From 5ca55aa5339a42ca9ce8e31d6b2744005d9e991b Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 20:22:56 -0500 Subject: [PATCH 1/6] publish IP address correctly --- menu/cbs/menu_cbs_ok.c | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index be9b5f223e..b8b390c56e 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3519,8 +3519,9 @@ finish: host->nick, sizeof(netplay_room_list[i].nickname)); /* to-do: get address fron host-> addr */ + struct sockaddr* address = &host->addr; strlcpy(netplay_room_list[i].address, - "", + inet_ntoa(((struct sockaddr_in*)(address))->sin_addr), sizeof(netplay_room_list[i].address)); strlcpy(netplay_room_list[i].corename, host->core, @@ -3531,7 +3532,6 @@ finish: strlcpy(netplay_room_list[i].gamename, host->content, sizeof(netplay_room_list[i].coreversion)); - /* to-do: this will only work with default port os we should have a start LAN game entry that always uses that port @@ -3540,7 +3540,26 @@ finish: /* to-do: lan announce doesn't announce CRC */ netplay_room_list[i].gamecrc = 0; netplay_room_list[i].timestamp = 0; - +/* Uncomment this to debug mismatched room parameters*/ +#if 1 + RARCH_LOG("Room Data: %d\n" + "Nickname: %s\n" + "Address: %s\n" + "Port: %d\n" + "Core: %s\n" + "Core Version: %s\n" + "Game: %s\n" + "Game CRC: %08x\n" + "Timestamp: %d\n", room_data->elems[j + 6].data, + netplay_room_list[i].nickname, + netplay_room_list[i].address, + netplay_room_list[i].port, + netplay_room_list[i].corename, + netplay_room_list[i].coreversion, + netplay_room_list[i].gamename, + netplay_room_list[i].gamecrc, + netplay_room_list[i].timestamp); +#endif snprintf(s, sizeof(s), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME), netplay_room_list[i].nickname); From e50ea80dfa91ad9010bb9f2f8036128b54bfa7d9 Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 21:24:34 -0500 Subject: [PATCH 2/6] integrate the rest of the lan scan parameters --- menu/cbs/menu_cbs_ok.c | 94 ++++++++++++----------------- network/netplay/netplay_discovery.c | 15 +++++ network/netplay/netplay_discovery.h | 1 + tasks/task_netplay_lan_scan.c | 1 + 4 files changed, 55 insertions(+), 56 deletions(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index b8b390c56e..cb86cfe59c 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3389,6 +3389,7 @@ static int action_ok_push_scan_file(const char *path, static void netplay_refresh_rooms_cb(void *task_data, void *user_data, const char *err) { char buf[PATH_MAX_LENGTH]; + int lan_room_count = 0; http_transfer_data_t *data = (http_transfer_data_t*)task_data; @@ -3424,6 +3425,8 @@ finish: if (!netplay_discovery_driver_ctl(RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES, &lan_hosts)) lan_hosts = NULL; + if (lan_hosts) + lan_room_count = lan_hosts->size; menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, file_list); @@ -3435,7 +3438,7 @@ finish: netplay_room_count = (int)(room_data->size / 8); netplay_room_list = (struct netplay_room*) malloc(sizeof(struct netplay_room) * netplay_room_count + - lan_hosts->size); + lan_room_count); #if 0 for (int i = 0; i < room_data->size; i++) @@ -3512,63 +3515,42 @@ finish: MENU_ROOM, 0, 0); } - struct netplay_host *host = &lan_hosts->hosts[k]; - for (; i < netplay_room_count + lan_hosts->size; i++) + if (lan_hosts && lan_room_count > 0) { - strlcpy(netplay_room_list[i].nickname, - host->nick, - sizeof(netplay_room_list[i].nickname)); - /* to-do: get address fron host-> addr */ - struct sockaddr* address = &host->addr; - strlcpy(netplay_room_list[i].address, - inet_ntoa(((struct sockaddr_in*)(address))->sin_addr), - sizeof(netplay_room_list[i].address)); - strlcpy(netplay_room_list[i].corename, - host->core, - sizeof(netplay_room_list[i].corename)); - strlcpy(netplay_room_list[i].coreversion, - host->core_version, - sizeof(netplay_room_list[i].coreversion)); - strlcpy(netplay_room_list[i].gamename, - host->content, - sizeof(netplay_room_list[i].coreversion)); - /* to-do: this will only work with default port os - we should have a start LAN game entry that always - uses that port - */ - netplay_room_list[i].port = 55435; - /* to-do: lan announce doesn't announce CRC */ - netplay_room_list[i].gamecrc = 0; - netplay_room_list[i].timestamp = 0; -/* Uncomment this to debug mismatched room parameters*/ -#if 1 - RARCH_LOG("Room Data: %d\n" - "Nickname: %s\n" - "Address: %s\n" - "Port: %d\n" - "Core: %s\n" - "Core Version: %s\n" - "Game: %s\n" - "Game CRC: %08x\n" - "Timestamp: %d\n", room_data->elems[j + 6].data, - netplay_room_list[i].nickname, - netplay_room_list[i].address, - netplay_room_list[i].port, - netplay_room_list[i].corename, - netplay_room_list[i].coreversion, - netplay_room_list[i].gamename, - netplay_room_list[i].gamecrc, - netplay_room_list[i].timestamp); -#endif - snprintf(s, sizeof(s), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME), - netplay_room_list[i].nickname); + struct netplay_host *host = &lan_hosts->hosts[k]; + for (; i < netplay_room_count + lan_room_count; i++) + { + strlcpy(netplay_room_list[i].nickname, + host->nick, + sizeof(netplay_room_list[i].nickname)); + struct sockaddr* address = &host->addr; + strlcpy(netplay_room_list[i].address, + inet_ntoa(((struct sockaddr_in*)(address))->sin_addr), + sizeof(netplay_room_list[i].address)); + strlcpy(netplay_room_list[i].corename, + host->core, + sizeof(netplay_room_list[i].corename)); + strlcpy(netplay_room_list[i].coreversion, + host->core_version, + sizeof(netplay_room_list[i].coreversion)); + strlcpy(netplay_room_list[i].gamename, + host->content, + sizeof(netplay_room_list[i].coreversion)); - menu_entries_append_enum(file_list, - s, - msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM), - MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, - MENU_ROOM, 0, 0); - k++; + netplay_room_list[i].port = 55435; + netplay_room_list[i].gamecrc = host->content_crc; + netplay_room_list[i].timestamp = 0; + + snprintf(s, sizeof(s), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME), + netplay_room_list[i].nickname); + + menu_entries_append_enum(file_list, + s, + msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM), + MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, + MENU_ROOM, 0, 0); + k++; + } } } } diff --git a/network/netplay/netplay_discovery.c b/network/netplay/netplay_discovery.c index a6c3429d27..e7a706f669 100644 --- a/network/netplay/netplay_discovery.c +++ b/network/netplay/netplay_discovery.c @@ -34,6 +34,11 @@ #include #include #include +#include +#include +#include "../../file_path_special.h" +#include "../paths.h" +#include "../content.h" #include #include @@ -58,6 +63,7 @@ struct ad_packet char core[NETPLAY_HOST_STR_LEN]; char core_version[NETPLAY_HOST_STR_LEN]; char content[NETPLAY_HOST_STR_LEN]; + char content_crc[NETPLAY_HOST_STR_LEN]; }; bool netplay_lan_ad_client(void); @@ -240,6 +246,8 @@ bool netplay_lan_ad_server(netplay_t *netplay) runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info); /* Now build our response */ + uint32_t *content_crc_ptr = NULL; + content_get_crc(&content_crc_ptr); memset(&ad_packet_buffer, 0, sizeof(struct ad_packet)); memcpy(&ad_packet_buffer, "RANS", 4); ad_packet_buffer.protocol_version = @@ -247,6 +255,8 @@ bool netplay_lan_ad_server(netplay_t *netplay) ad_packet_buffer.port = htonl(netplay->tcp_port); strlcpy(ad_packet_buffer.retroarch_version, PACKAGE_VERSION, NETPLAY_HOST_STR_LEN); + strlcpy(ad_packet_buffer.content, !string_is_empty(path_basename(path_get(RARCH_PATH_BASENAME))) ? path_basename(path_get(RARCH_PATH_BASENAME)) : "N/A", + NETPLAY_HOST_STR_LEN); strlcpy(ad_packet_buffer.nick, netplay->nick, NETPLAY_HOST_STR_LEN); if (info) { @@ -255,6 +265,10 @@ bool netplay_lan_ad_server(netplay_t *netplay) strlcpy(ad_packet_buffer.core_version, info->info.library_version, NETPLAY_HOST_STR_LEN); } + char s[NETPLAY_HOST_STR_LEN]; + snprintf(s, sizeof(s), "%d", *content_crc_ptr); + strlcpy(ad_packet_buffer.content_crc, s, + NETPLAY_HOST_STR_LEN); /* And send it */ sendto(lan_ad_server_fd, (const char*)&ad_packet_buffer, @@ -372,6 +386,7 @@ bool netplay_lan_ad_client(void) NETPLAY_HOST_STR_LEN); strlcpy(host->content, ad_packet_buffer.content, NETPLAY_HOST_STR_LEN); + host->content_crc = atoi(ad_packet_buffer.content_crc); host->nick[NETPLAY_HOST_STR_LEN-1] = host->core[NETPLAY_HOST_STR_LEN-1] = host->core_version[NETPLAY_HOST_STR_LEN-1] = diff --git a/network/netplay/netplay_discovery.h b/network/netplay/netplay_discovery.h index e3254c94a3..68119cd020 100644 --- a/network/netplay/netplay_discovery.h +++ b/network/netplay/netplay_discovery.h @@ -39,6 +39,7 @@ struct netplay_host 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 diff --git a/tasks/task_netplay_lan_scan.c b/tasks/task_netplay_lan_scan.c index 2842035f1d..ca77d9ba28 100644 --- a/tasks/task_netplay_lan_scan.c +++ b/tasks/task_netplay_lan_scan.c @@ -15,6 +15,7 @@ #include #include +#include "../paths.h" #include "tasks_internal.h" From 650655abbee6616919883a0af5dadd67aadcf0de Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 21:44:11 -0500 Subject: [PATCH 3/6] doesn't seem to crash anymore --- menu/cbs/menu_cbs_ok.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index cb86cfe59c..b89cfc582d 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3423,10 +3423,12 @@ finish: file_list_t *file_list = menu_entries_get_selection_buf_ptr(0); struct netplay_host_list *lan_hosts; - if (!netplay_discovery_driver_ctl(RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES, &lan_hosts)) - lan_hosts = NULL; + netplay_discovery_driver_ctl(RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES, &lan_hosts); + if (lan_hosts) lan_room_count = lan_hosts->size; + else + lan_room_count = 0; menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, file_list); @@ -3515,7 +3517,7 @@ finish: MENU_ROOM, 0, 0); } - if (lan_hosts && lan_room_count > 0) + if (lan_room_count != 0) { struct netplay_host *host = &lan_hosts->hosts[k]; for (; i < netplay_room_count + lan_room_count; i++) From ba4804ed7cde67e41f0c6fb80d8e415bc920bb96 Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 21:58:39 -0500 Subject: [PATCH 4/6] differentiate lan and internet rooms --- intl/msg_hash_de.h | 2 ++ intl/msg_hash_it.h | 2 ++ intl/msg_hash_ja.h | 2 ++ intl/msg_hash_pt.h | 2 ++ intl/msg_hash_us.h | 2 ++ menu/cbs/menu_cbs_ok.c | 2 +- msg_hash.h | 1 + 7 files changed, 12 insertions(+), 1 deletion(-) diff --git a/intl/msg_hash_de.h b/intl/msg_hash_de.h index 06b2c4c71c..e89433e64b 100644 --- a/intl/msg_hash_de.h +++ b/intl/msg_hash_de.h @@ -2400,6 +2400,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, "Aktualisieren") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") +MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, + "Nickname (Lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Kompatibler Inhalt gefunden") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_it.h b/intl/msg_hash_it.h index 4d3be0310f..5a153656a5 100644 --- a/intl/msg_hash_it.h +++ b/intl/msg_hash_it.h @@ -2279,3 +2279,5 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, "Refresh Room List") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") +MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, + "Nickname (Lan): %s") diff --git a/intl/msg_hash_ja.h b/intl/msg_hash_ja.h index 01bb610aec..ae1726f0f3 100644 --- a/intl/msg_hash_ja.h +++ b/intl/msg_hash_ja.h @@ -2402,6 +2402,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, "ルーム表を更新") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "ニックネーム: %s") +MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, + "Nickname (Lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "対応するコンテンツが見つかりました") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_pt.h b/intl/msg_hash_pt.h index 27d946a16a..d8d135003d 100644 --- a/intl/msg_hash_pt.h +++ b/intl/msg_hash_pt.h @@ -2398,6 +2398,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, "Atualizar") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Apelido: %s") +MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, + "Nickname (Lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Conteúdo compatível encontrado") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index cb8540aff2..1ba8cba918 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -2406,6 +2406,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, "Refresh") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") +MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, + "Nickname (Lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Compatible content found") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index b89cfc582d..7e41afd930 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3543,7 +3543,7 @@ finish: netplay_room_list[i].gamecrc = host->content_crc; netplay_room_list[i].timestamp = 0; - snprintf(s, sizeof(s), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME), + snprintf(s, sizeof(s), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN), netplay_room_list[i].nickname); menu_entries_append_enum(file_list, diff --git a/msg_hash.h b/msg_hash.h index 15a8569b1c..21b3df48ec 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -870,6 +870,7 @@ enum msg_hash_enums MENU_LABEL(SCAN_FILE), MENU_LABEL(NETPLAY_REFRESH_ROOMS), MENU_LABEL(NETPLAY_ROOM_NICKNAME), + MENU_LABEL(NETPLAY_ROOM_NICKNAME_LAN), MENU_LABEL(ADD_CONTENT_LIST), MENU_LABEL(CONFIGURATIONS_LIST), From 35d78bb01019232a41ebf14253fd56aa6171806c Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 22:04:59 -0500 Subject: [PATCH 5/6] better label --- intl/msg_hash_de.h | 2 +- intl/msg_hash_it.h | 2 +- intl/msg_hash_ja.h | 2 +- intl/msg_hash_pt.h | 2 +- intl/msg_hash_us.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/intl/msg_hash_de.h b/intl/msg_hash_de.h index e89433e64b..3a0614e528 100644 --- a/intl/msg_hash_de.h +++ b/intl/msg_hash_de.h @@ -2401,7 +2401,7 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, - "Nickname (Lan): %s") + "Nickname (lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Kompatibler Inhalt gefunden") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_it.h b/intl/msg_hash_it.h index 5a153656a5..76a68124e8 100644 --- a/intl/msg_hash_it.h +++ b/intl/msg_hash_it.h @@ -2280,4 +2280,4 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, - "Nickname (Lan): %s") + "Nickname (lan): %s") diff --git a/intl/msg_hash_ja.h b/intl/msg_hash_ja.h index ae1726f0f3..b3dae4a13a 100644 --- a/intl/msg_hash_ja.h +++ b/intl/msg_hash_ja.h @@ -2403,7 +2403,7 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "ニックネーム: %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, - "Nickname (Lan): %s") + "Nickname (lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "対応するコンテンツが見つかりました") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_pt.h b/intl/msg_hash_pt.h index d8d135003d..816c2a19d6 100644 --- a/intl/msg_hash_pt.h +++ b/intl/msg_hash_pt.h @@ -2399,7 +2399,7 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Apelido: %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, - "Nickname (Lan): %s") + "Nickname (lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Conteúdo compatível encontrado") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index 1ba8cba918..d09208bf93 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -2407,7 +2407,7 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_REFRESH_ROOMS, MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME, "Nickname: %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_ROOM_NICKNAME_LAN, - "Nickname (Lan): %s") + "Nickname (lan): %s") MSG_HASH(MENU_ENUM_LABEL_VALUE_NETPLAY_COMPAT_CONTENT_FOUND, "Compatible content found") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_CROP_OVERSCAN, From 0c456c22356a2884eca1b207203053b443e66f68 Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 27 Feb 2017 23:47:04 -0500 Subject: [PATCH 6/6] comment this out for now --- menu/cbs/menu_cbs_ok.c | 2 +- network/netplay/netplay_discovery.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index 7e41afd930..ed0499aa6f 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3423,7 +3423,7 @@ finish: file_list_t *file_list = menu_entries_get_selection_buf_ptr(0); struct netplay_host_list *lan_hosts; - netplay_discovery_driver_ctl(RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES, &lan_hosts); + //netplay_discovery_driver_ctl(RARCH_NETPLAY_DISCOVERY_CTL_LAN_GET_RESPONSES, &lan_hosts); if (lan_hosts) lan_room_count = lan_hosts->size; diff --git a/network/netplay/netplay_discovery.c b/network/netplay/netplay_discovery.c index e7a706f669..69c7eed3c7 100644 --- a/network/netplay/netplay_discovery.c +++ b/network/netplay/netplay_discovery.c @@ -37,8 +37,8 @@ #include #include #include "../../file_path_special.h" -#include "../paths.h" -#include "../content.h" +#include "../../paths.h" +#include "../../content.h" #include #include