You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
popup( PF_USE_AFFIRMATIVE_ICON | PF_NO_NETWORKING, 1, POPUP_OK, XSTR( "TCP/IP protocol not found. This protocol is required for multiplayer FreeSpace.", 1602));
322
-
} else {
323
-
Assert(Multi_options_g.protocol == NET_IPX);
324
-
popup( PF_USE_AFFIRMATIVE_ICON | PF_NO_NETWORKING, 1, POPUP_OK, XSTR( "IPX protocol not found. This protocol is required for multiplayer FreeSpace.", 1603));
if ((Multi_options_g.protocol == NET_IPX) && !Ipx_active) {
350
-
popup( PF_USE_AFFIRMATIVE_ICON | PF_NO_NETWORKING, 1, POPUP_OK, XSTR( "You have selected IPX for multiplayer FreeSpace, but the IPX protocol was not detected on your machine.", 1402));
MessageBox((HWND)os_get_window(), XSTR( "You have selected IPX for multiplayer FreeSpace, but the IPX protocol was not detected on your machine.", 1402), "Error", MB_OK);
if ((Multi_options_g.protocol == NET_TCP) && !Tcp_active){
1447
1442
if (Tcp_failure_code == WSAEADDRINUSE) {
1448
1443
MessageBox((HWND)os_get_window(), XSTR("You have selected TCP/IP for multiplayer FreeSpace, but the TCP socket is already in use. Check for another instance and/or use the \"-port <port_num>\" command line option to select an available port.", 1620), "Error", MB_OK);
1449
-
} else {
1444
+
}
1445
+
else {
1450
1446
MessageBox((HWND)os_get_window(), XSTR("You have selected TCP/IP for multiplayer FreeSpace, but the TCP/IP protocol was not detected on your machine.", 362), "Error", MB_OK);
Copy file name to clipboardExpand all lines: code/network/multimsgs.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ void send_mission_log_packet( int entry );
300
300
// send a mission message packet
301
301
voidsend_mission_message_packet(int id, char *who_from, int priority, int timing, int source, int builtin_type, int multi_target, int multi_team_filter, int delay = 0);
302
302
303
-
// broadcast a query for active games. IPX will use net broadcast and TCP will either request from the MT or from the specified list
303
+
// broadcast a query for active games. TCP will either request from the MT or from the specified list
304
304
voidbroadcast_game_query();
305
305
306
306
// send an individual query to an address to see if there is an active game
0 commit comments