comply with thread-safety checks
authorGiuseppe Lettieri <g.lettieri@iet.unipi.it>
Sat, 6 Jul 2013 17:14:14 +0000 (19:14 +0200)
committerGiuseppe Lettieri <g.lettieri@iet.unipi.it>
Sat, 6 Jul 2013 17:14:14 +0000 (19:14 +0200)
We hide tunproxy.c from the build, since thread-safety checks do not
make sense there.

lib/netdev-tunnel.c
planetlab/exp-tool/tunproxy.txt [moved from planetlab/exp-tool/tunproxy.c with 100% similarity]

index 36c454b..f8bc74b 100644 (file)
@@ -163,6 +163,7 @@ netdev_tunnel_get_config(const struct netdev *dev_, struct smap *args)
 static int
 netdev_tunnel_connect(struct netdev_tunnel *dev)
 {
+    char buf[1024];
     if (dev->sockfd < 0)
         return EBADF;
     if (!dev->valid_remote_ip || !dev->valid_remote_port)
@@ -174,7 +175,7 @@ netdev_tunnel_connect(struct netdev_tunnel *dev)
     dev->connected = true;
     netdev_tunnel_update_seq(dev);
     VLOG_DBG("%s: connected to (%s, %d)", netdev_get_name(&dev->up),
-        inet_ntoa(dev->remote_addr.sin_addr), ntohs(dev->remote_addr.sin_port));
+        inet_ntop(AF_INET, &dev->remote_addr.sin_addr, buf, 1024), ntohs(dev->remote_addr.sin_port));
     return 0;
 }