fixed: broken fs0, sram saves
[fceu.git] / drivers / cli / unix-netplay.c
index d5d1cc4..747fa00 100644 (file)
@@ -23,6 +23,7 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <stdio.h>
+#include <string.h>
 #include <unistd.h>
 #include <netdb.h>
 #include <errno.h>
@@ -60,7 +61,7 @@ int FCEUD_NetworkConnect(void)
   if(bind(TSocket, (struct sockaddr *)&sockn, sizeof(sockn))<0)
   {
    close(TSocket);
-   puts("Error binding to socket."); 
+   puts("Error binding to socket.");
    return(0);
   }
   if(listen(TSocket, 1)<0)
@@ -71,7 +72,7 @@ int FCEUD_NetworkConnect(void)
   }
   {
    socklen_t len=sizeof(sockn);
-     
+
    printf("Accepting connection on port %d...\n",Port);
    if((Socket=accept(TSocket,(struct sockaddr *)&sockn,&len))<0 )
    {
@@ -95,7 +96,7 @@ int FCEUD_NetworkConnect(void)
     return(0);
    }
    memcpy(&sockn.sin_addr,Host->h_addr,Host->h_length);
-  }  
+  }
   printf("Attempting to connect to %s...\n",netplayhost);
   if( connect(TSocket, (struct sockaddr *)&sockn, sizeof(sockn)) <0 )
   {
@@ -105,7 +106,7 @@ int FCEUD_NetworkConnect(void)
   }
   Socket=TSocket;
  }
- return(1);  
+ return(1);
 }
 
 /* 0 on failure, 1 on success, -1 if it would block and blocking is not