X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/e31c0b14c3fa77fb4e164f387a7ac9744e7b41d0..6be88c1455321398d5dcec66375327b25827beee:/tripe.c?ds=inline diff --git a/tripe.c b/tripe.c index cacc7708..f85248c6 100644 --- a/tripe.c +++ b/tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.c,v 1.2 2001/02/03 22:33:00 mdw Exp $ + * $Id: tripe.c,v 1.6 2001/06/19 22:08:37 mdw Exp $ * * Main program * @@ -29,6 +29,18 @@ /*----- Revision history --------------------------------------------------* * * $Log: tripe.c,v $ + * Revision 1.6 2001/06/19 22:08:37 mdw + * Moved buffers to peer.c. + * + * Revision 1.5 2001/02/16 21:43:12 mdw + * Provide a more helpful usage message. + * + * 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. * @@ -44,7 +56,6 @@ /*----- Global variables --------------------------------------------------*/ sel_state sel; -octet buf_i[PKBUFSZ], buf_o[PKBUFSZ]; /*----- Static variables --------------------------------------------------*/ @@ -67,7 +78,7 @@ void interval(struct timeval *tv, void *v) { struct timeval tvv; T( trace(T_PEER, "peer: interval timer"); ) - rand_seed(RAND_GLOBAL, RMD160_HASHSZ); + rand_seed(RAND_GLOBAL, HASHSZ); p_interval(); tvv = *tv; tvv.tv_sec += T_INTERVAL; @@ -86,7 +97,8 @@ void interval(struct timeval *tv, void *v) static void usage(FILE *fp) { - pquis(fp, "Usage: $ [-options]\n"); + pquis(fp, "Usage: $ [-D] [-p port] [-T trace-opts] [-d dir] [-a socket]\n\ + [-k priv-keyring] [-K pub-keyring] [-t key-tag]\n"); } static void version(FILE *fp) @@ -279,7 +291,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(); } @@ -298,7 +310,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");