Cleanups:
[tinc] / src / meta.c
index 786d56a..7a68d9d 100644 (file)
@@ -1,7 +1,7 @@
 /*
     meta.c -- handle the meta communication
-    Copyright (C) 2000,2001 Guus Sliepen <guus@sliepen.warande.net>,
-                  2000,2001 Ivo Timmermans <itimmermans@bigfoot.com>
+    Copyright (C) 2000-2002 Guus Sliepen <guus@sliepen.eu.org>,
+                  2000-2002 Ivo Timmermans <ivo@o2w.nl>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: meta.c,v 1.1.2.21 2001/10/27 12:13:17 guus Exp $
+    $Id: meta.c,v 1.1.2.28 2002/09/09 19:39:58 guus Exp $
 */
 
 #include "config.h"
 
 #include <errno.h>
 #include <syslog.h>
-#include <sys/signal.h>
 #include <unistd.h>
 #include <string.h>
 /* This line must be below the rest for FreeBSD */
+#include <sys/types.h>
 #include <sys/socket.h>
 
 #include <openssl/evp.h>
@@ -44,7 +44,7 @@ int send_meta(connection_t *c, char *buffer, int length)
   char *bufp;
   int outlen;
   char outbuf[MAXBUFSIZE];
-cp
+  cp();
   if(debug_lvl >= DEBUG_META)
     syslog(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s)"), length,
            c->name, c->hostname);
@@ -60,10 +60,10 @@ cp
 
   if(write(c->socket, bufp, length) < 0)
     {
-      syslog(LOG_ERR, _("Sending meta data to %s (%s) failed: %m"), c->name, c->hostname);
+      syslog(LOG_ERR, _("Sending meta data to %s (%s) failed: %s"), c->name, c->hostname, strerror(errno));
       return -1;
     }
-cp
+  cp();
   return 0;
 }
 
@@ -71,14 +71,14 @@ void broadcast_meta(connection_t *from, char *buffer, int length)
 {
   avl_node_t *node;
   connection_t *c;
-cp
+  cp();
   for(node = connection_tree->head; node; node = node->next)
     {
       c = (connection_t *)node->data;
       if(c != from && c->status.active)
         send_meta(c, buffer, length);
     }
-cp
+  cp();
 }
 
 int receive_meta(connection_t *c)
@@ -88,10 +88,10 @@ int receive_meta(connection_t *c)
   int lenin, reqlen;
   int decrypted = 0;
   char inbuf[MAXBUFSIZE];
-cp
+  cp();
   if(getsockopt(c->socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
     {
-      syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, c->socket,
+      syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%s %s (%s)"), __FILE__, __LINE__, c->socket, strerror(errno),
              c->name, c->hostname);
       return -1;
     }
@@ -125,8 +125,8 @@ cp
         if(errno==EINTR)
           return 0;      
         else
-          syslog(LOG_ERR, _("Metadata socket read error for %s (%s): %m"),
-                 c->name, c->hostname);
+          syslog(LOG_ERR, _("Metadata socket read error for %s (%s): %s"),
+                 c->name, c->hostname, strerror(errno));
 
       return -1;
     }
@@ -182,6 +182,7 @@ cp
 
       if(reqlen)
         {
+          c->reqlen = reqlen;
           if(receive_request(c))
             return -1;
 
@@ -204,7 +205,7 @@ cp
       return -1;
     }
 
-  c->last_ping_time = time(NULL);
-cp  
+  c->last_ping_time = now;
+  cp();
   return 0;
 }