chiark / gitweb /
Add a new buffer.
[tripe] / tripe.c
diff --git a/tripe.c b/tripe.c
index 6ff4a6a896b660ea4b13042997d4f038b9136d2d..2f423f84323468cfa9997fd649218269f081363b 100644 (file)
--- a/tripe.c
+++ b/tripe.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: tripe.c,v 1.1 2001/02/03 20:26:37 mdw Exp $
+ * $Id: tripe.c,v 1.4 2001/02/16 21:41:31 mdw Exp $
  *
  * Main program
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: tripe.c,v $
+ * Revision 1.4  2001/02/16 21:41:31  mdw
+ * Add a new buffer.
+ *
+ * Revision 1.3  2001/02/04 17:10:40  mdw
+ * Remove a debugging @abort@ call.
+ *
+ * Revision 1.2  2001/02/03 22:33:00  mdw
+ * Stuff more randomness into the pool in the interval timer.
+ *
  * Revision 1.1  2001/02/03 20:26:37  mdw
  * Initial checkin.
  *
@@ -41,7 +50,7 @@
 /*----- Global variables --------------------------------------------------*/
 
 sel_state sel;
-octet buf_i[PKBUFSZ], buf_o[PKBUFSZ];
+octet buf_i[PKBUFSZ], buf_o[PKBUFSZ], buf_t[PKBUFSZ];
 
 /*----- Static variables --------------------------------------------------*/
 
@@ -64,6 +73,7 @@ void interval(struct timeval *tv, void *v)
 {
   struct timeval tvv;
   T( trace(T_PEER, "peer: interval timer"); )
+  rand_seed(RAND_GLOBAL, HASHSZ);
   p_interval();
   tvv = *tv;
   tvv.tv_sec += T_INTERVAL;
@@ -275,7 +285,7 @@ int main(int argc, char *argv[])
   km_init(kr_priv, kr_pub, tag_priv);
   a_init(csock);
   if (f & f_daemon) {
-    if (u_daemon)
+    if (u_daemon())
       die(EXIT_FAILURE, "couldn't become a daemon: %s", strerror(errno));
     a_daemon();
   }
@@ -294,7 +304,6 @@ int main(int argc, char *argv[])
         selerr = 0;
       else if (errno != EINTR && errno != EAGAIN) {
        a_warn("select failed: %s", strerror(errno));
-       abort();
        selerr++;
        if (selerr > 8) {
          a_warn("too many select errors: bailing out");