Ver código fonte

added cast for mingw

Vladyslav Hrytsenko 7 anos atrás
pai
commit
a6e864d8ac
2 arquivos alterados com 6 adições e 9 exclusões
  1. 5 8
      include/enet.h
  2. 1 1
      test/build.c

+ 5 - 8
include/enet.h

@@ -5181,8 +5181,7 @@ extern "C" {
         #define NS_IN6ADDRSZ 16
         #define NS_INT16SZ   2
 
-        int inet_pton4(const char *src, char *dst)
-        {
+        int inet_pton4(const char *src, char *dst) {
             uint8_t tmp[NS_INADDRSZ], *tp;
 
             int saw_digit = 0;
@@ -5228,8 +5227,7 @@ extern "C" {
             return 1;
         }
 
-        int inet_pton6(const char *src, char *dst)
-        {
+        int inet_pton6(const char *src, char *dst) {
             static const char xdigits[] = "0123456789abcdef";
             uint8_t tmp[NS_IN6ADDRSZ];
 
@@ -5325,14 +5323,13 @@ extern "C" {
         }
 
 
-        int inet_pton(int af, const char *src, char *dst)
-        {
+        int inet_pton(int af, const char *src, struct in6_addr *dst) {
             switch (af)
             {
             case AF_INET:
-                return inet_pton4(src, dst);
+                return inet_pton4(src, (char *)dst);
             case AF_INET6:
-                return inet_pton6(src, dst);
+                return inet_pton6(src, (char *)dst);
             default:
                 return -1;
             }

+ 1 - 1
test/build.c

@@ -72,7 +72,7 @@ int main() {
 
     printf("starting clients...\n");
     for (i = 0; i < MAX_CLIENTS; ++i) {
-        enet_address_set_host(&address, "::1");
+        enet_address_set_host(&address, "127.0.0.1");
         clients[i].host = enet_host_create(NULL, 1, 2, 0, 0);
         clients[i].peer = enet_host_connect(clients[i].host, &address, 2, 0);
     }