From b4e566689f469cc1cffe99e50e16a346d0f9832d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 8 Apr 2004 01:36:29 +0000 Subject: [PATCH] Expunge revision histories in files. Organization: Straylight/Edgeware From: mdw --- Makefile.am | 33 +-------------------- acconfig.h | 22 +------------- admin.c | 39 +----------------------- client.c | 50 +------------------------------ configure.in | 45 +--------------------------- doc/Makefile.am | 18 +---------- doc/wrestlers.tex | 24 +-------------- ethereal/Makefile.am | 9 +----- ethereal/packet-tripe.c | 13 +------- keyexch.c | 44 +-------------------------- keymgmt.c | 19 +----------- keyset.c | 40 +------------------------ mallory.c | 16 +--------- peer.c | 44 +-------------------------- pkstream.c | 13 +------- servutil.c | 20 +------------ tripe-protocol.h | 10 +------ tripe.c | 43 +-------------------------- tripe.h | 66 +---------------------------------------- tun-bsd.c | 13 +------- tun-linux.c | 13 +------- tun-unet.c | 22 +------------- util.c | 13 +------- util.h | 13 +------- 24 files changed, 24 insertions(+), 618 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9a2419db..b45927eb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.9 2003/11/29 23:49:32 mdw Exp $ +## $Id: Makefile.am,v 1.10 2004/04/08 01:36:17 mdw Exp $ ## ## Makefile for TrIPE ## @@ -25,37 +25,6 @@ ## along with TrIPE; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.am,v $ -## Revision 1.9 2003/11/29 23:49:32 mdw -## Debianization. -## -## Revision 1.8 2003/10/15 09:31:24 mdw -## Remove buf, and add Ethereal analysis. -## -## Revision 1.7 2003/05/17 11:04:38 mdw -## Ship new configuration and startup kit. -## -## Revision 1.6 2003/04/23 12:53:28 mdw -## New pkstream program. -## -## Revision 1.5 2001/06/19 22:12:57 mdw -## Build new proxy program. -## -## Revision 1.4 2001/02/22 09:07:28 mdw -## Build documents now. -## -## Revision 1.3 2001/02/16 21:42:02 mdw -## Only link the server against Catacomb. -## -## Revision 1.2 2001/02/05 19:48:18 mdw -## Initial support for BSD tunnel devices. -## -## Revision 1.1 2001/02/03 20:26:37 mdw -## Initial checkin. -## - AUTOMAKE_OPTIONS = foreign SUBDIRS = doc @DIRS@ configdir = @configdir@ diff --git a/acconfig.h b/acconfig.h index 07dedb88..a36ff8e0 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: acconfig.h,v 1.5 2003/11/29 23:49:32 mdw Exp $ + * $Id: acconfig.h,v 1.6 2004/04/08 01:36:17 mdw Exp $ * * Configuration header for TrIPE * @@ -26,26 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: acconfig.h,v $ - * Revision 1.5 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.4 2003/10/15 09:30:18 mdw - * Add support for Ethereal protocol analysis. - * - * Revision 1.3 2003/07/13 11:38:39 mdw - * Fix formatting. - * - * Revision 1.2 2003/04/06 10:31:25 mdw - * Fix description. - * - * Revision 1.1 2001/02/04 01:17:54 mdw - * Create a configuration header file to tidy up command lines. - * - */ - #ifndef ACCONFIG_H #define ACCONFIG_H diff --git a/admin.c b/admin.c index a1292403..bca525d8 100644 --- a/admin.c +++ b/admin.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: admin.c,v 1.9 2004/04/03 10:22:10 mdw Exp $ + * $Id: admin.c,v 1.10 2004/04/08 01:36:17 mdw Exp $ * * Admin interface for configuration * @@ -26,43 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: admin.c,v $ - * Revision 1.9 2004/04/03 10:22:10 mdw - * Don't warn about boring errors from @accept@. - * - * Revision 1.8 2003/04/06 10:25:17 mdw - * Support Linux TUN/TAP device. Fix some bugs. - * - * Revision 1.7 2002/01/13 14:57:33 mdw - * Track @lbuf@ and @dstr_vputf@ changes in mLib. - * - * Revision 1.6 2001/02/19 19:11:09 mdw - * Output buffering on admin connections. - * - * Revision 1.5 2001/02/16 21:22:51 mdw - * Support for displaying statistics. Make client connections blocking, so - * that things don't get dropped. (This might change again if I add - * buffering.) - * - * Revision 1.4 2001/02/06 09:34:53 mdw - * Change ERR response to FAIL for consistency with other programs. - * - * Revision 1.3 2001/02/04 01:17:12 mdw - * The `DAEMON' notification to stdout is replaced by a warning. The - * `DAEMON' and `QUIT' command send `OK' on successful completion. Put - * assignment of sequence number in a T(...) guard. - * - * Revision 1.2 2001/02/03 22:40:29 mdw - * Put timer information into the entropy pool when packets are received - * and on similar events. Reseed the generator on the interval timer. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/client.c b/client.c index 1910ef74..45dbd7bd 100644 --- a/client.c +++ b/client.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: client.c,v 1.13 2003/11/29 23:49:32 mdw Exp $ + * $Id: client.c,v 1.14 2004/04/08 01:36:17 mdw Exp $ * * Client for TrIPE * @@ -26,54 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: client.c,v $ - * Revision 1.13 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.12 2003/10/15 09:29:38 mdw - * Cosmetic fix to changelog comment. - * - * Revision 1.11 2003/07/13 11:19:49 mdw - * Incompatible protocol fix! Include message type code under MAC tag to - * prevent cut-and-paste from key-exchange messages to general packet - * transport. - * - * Revision 1.10 2003/05/17 10:59:19 mdw - * Put a newline in the pidfile. - * - * Revision 1.9 2002/01/13 14:57:18 mdw - * Track @lbuf@ changes in mLib. - * - * Revision 1.8 2001/06/19 22:09:37 mdw - * Move the program name to the right place when constructing the arguments - * to pass to a new server. - * - * Revision 1.7 2001/02/22 09:07:54 mdw - * Write a pidfile on request, and delete it when finished. - * - * Revision 1.6 2001/02/22 09:06:08 mdw - * Fix logfile rotation to avoid program collapse. - * - * Revision 1.5 2001/02/16 21:23:39 mdw - * Use reliable signal handling for reopening logs. - * - * Revision 1.4 2001/02/06 09:34:53 mdw - * Change ERR response to FAIL for consistency with other programs. - * - * Revision 1.3 2001/02/04 17:10:15 mdw - * Reopen logfiles on receipt of @SIGHUP@ (not done very well). Don't - * change directory -- just mangle pathnames instead. - * - * Revision 1.2 2001/02/04 01:17:54 mdw - * Create a configuration header file to tidy up command lines. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "config.h" diff --git a/configure.in b/configure.in index 38fb539c..65c9edc2 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-autoconf-*- dnl -dnl $Id: configure.in,v 1.14 2003/11/29 23:49:32 mdw Exp $ +dnl $Id: configure.in,v 1.15 2004/04/08 01:36:17 mdw Exp $ dnl dnl Configuration script for TrIPE dnl @@ -25,49 +25,6 @@ dnl You should have received a copy of the GNU General Public License dnl along with TrIPE; if not, write to the Free Software Foundation, dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -dnl ----- Revision history -------------------------------------------------- -dnl -dnl $Log: configure.in,v $ -dnl Revision 1.14 2003/11/29 23:49:32 mdw -dnl Debianization. -dnl -dnl Revision 1.13 2003/10/15 09:30:18 mdw -dnl Add support for Ethereal protocol analysis. -dnl -dnl Revision 1.12 2003/07/13 11:54:40 mdw -dnl Version bump. -dnl -dnl Revision 1.11 2003/05/17 11:04:38 mdw -dnl Ship new configuration and startup kit. -dnl -dnl Revision 1.9 2003/04/06 10:33:31 mdw -dnl And again. (Sigh.) -dnl -dnl Revision 1.8 2003/04/06 10:31:13 mdw -dnl Fix stupid bug. -dnl -dnl Revision 1.7 2003/04/06 10:25:17 mdw -dnl Support Linux TUN/TAP device. Fix some bugs. -dnl -dnl Revision 1.6 2001/06/19 22:13:57 mdw -dnl Version bump. -dnl -dnl Revision 1.5 2001/03/03 12:30:39 mdw -dnl Make this a pre-release. -dnl -dnl Revision 1.4 2001/02/22 09:07:28 mdw -dnl Build documents now. -dnl -dnl Revision 1.3 2001/02/16 21:24:12 mdw -dnl Don't link the client against Catacomb. -dnl -dnl Revision 1.2 2001/02/04 01:17:54 mdw -dnl Create a configuration header file to tidy up command lines. -dnl -dnl Revision 1.1 2001/02/03 20:26:37 mdw -dnl Initial checkin. -dnl - AC_INIT(tripe.c) AM_INIT_AUTOMAKE(tripe, 1.0.0pre6) AM_CONFIG_HEADER(config.h) diff --git a/doc/Makefile.am b/doc/Makefile.am index 2d533800..b537576b 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.4 2003/10/15 09:30:29 mdw Exp $ +## $Id: Makefile.am,v 1.5 2004/04/08 01:36:17 mdw Exp $ ## ## Makefile for TrIPE documentation ## @@ -25,22 +25,6 @@ ## along with TrIPE; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.am,v $ -## Revision 1.4 2003/10/15 09:30:29 mdw -## Document the evil proxy. -## -## Revision 1.3 2003/04/23 13:53:20 mdw -## New manpage for pkstream. -## -## Revision 1.2 2001/02/22 09:11:42 mdw -## Distribute the manpages. -## -## Revision 1.1 2001/02/22 09:07:29 mdw -## Build documents now. -## - AUTOMAKE_OPTIONS = foreign man_MANS = tripe.8 tripectl.1 tripe-admin.5 pkstream.1 tripe-mitm.8 diff --git a/doc/wrestlers.tex b/doc/wrestlers.tex index 0f8cc000..8d1c2a94 100644 --- a/doc/wrestlers.tex +++ b/doc/wrestlers.tex @@ -1,34 +1,12 @@ %%% -*-latex-*- %%% -%%% $Id: wrestlers.tex,v 1.6 2003/07/13 11:16:27 mdw Exp $ +%%% $Id: wrestlers.tex,v 1.7 2004/04/08 01:36:17 mdw Exp $ %%% %%% Description of the Wrestlers Protocol %%% %%% (c) 2001 Mark Wooding %%% -%%%----- Revision history --------------------------------------------------- -%%% -%%% $Log: wrestlers.tex,v $ -%%% Revision 1.6 2003/07/13 11:16:27 mdw -%%% Much documentation progress. -%%% -%%% Revision 1.5 2002/01/13 14:55:31 mdw -%%% More incomplete stuff. -%%% -%%% Revision 1.4 2001/06/29 19:36:05 mdw -%%% Some progress made on laptop. -%%% -%%% Revision 1.3 2001/06/22 19:41:31 mdw -%%% Restart with different structure and rather more formal objectives. -%%% -%%% Revision 1.2 2001/02/22 09:09:05 mdw -%%% Partially through reworking. -%%% -%%% Revision 1.1 2001/02/16 21:43:33 mdw -%%% Initial versions of documentation. -%%% - \newif\iffancystyle\fancystyletrue \iffancystyle diff --git a/ethereal/Makefile.am b/ethereal/Makefile.am index a2c43ee3..fa160873 100644 --- a/ethereal/Makefile.am +++ b/ethereal/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.1 2003/10/15 09:30:19 mdw Exp $ +## $Id: Makefile.am,v 1.2 2004/04/08 01:36:17 mdw Exp $ ## ## Makefile fragment for Ethereal plugin ## @@ -25,13 +25,6 @@ ## along with TrIPE; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.am,v $ -## Revision 1.1 2003/10/15 09:30:19 mdw -## Add support for Ethereal protocol analysis. -## - AUTOMAKE_OPTIONS = foreign CFLAGS = -I$(top_srcdir) -I$(top_builddir) @ETHEREAL_CFLAGS@ diff --git a/ethereal/packet-tripe.c b/ethereal/packet-tripe.c index 386f383c..4b4e0ace 100644 --- a/ethereal/packet-tripe.c +++ b/ethereal/packet-tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: packet-tripe.c,v 1.2 2004/04/03 12:35:13 mdw Exp $ + * $Id: packet-tripe.c,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * TrIPE protocol dissector for Ethereal * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: packet-tripe.c,v $ - * Revision 1.2 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.1 2003/10/15 09:30:19 mdw - * Add support for Ethereal protocol analysis. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "config.h" diff --git a/keyexch.c b/keyexch.c index ea503583..97965c85 100644 --- a/keyexch.c +++ b/keyexch.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: keyexch.c,v 1.11 2004/04/03 12:35:13 mdw Exp $ + * $Id: keyexch.c,v 1.12 2004/04/08 01:36:17 mdw Exp $ * * Key exchange protocol * @@ -26,48 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: keyexch.c,v $ - * Revision 1.11 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.10 2003/10/15 09:29:38 mdw - * Cosmetic fix to changelog comment. - * - * Revision 1.9 2003/07/13 11:53:14 mdw - * Add protocol commentary. - * - * Revision 1.8 2003/07/13 11:19:49 mdw - * Incompatible protocol fix! Include message type code under MAC tag to - * prevent cut-and-paste from key-exchange messages to general packet - * transport. - * - * Revision 1.7 2003/05/17 11:01:28 mdw - * Handle flags on challenge timers correctly to prevent confusing the event - * list. - * - * Revision 1.6 2003/04/06 10:26:35 mdw - * Report peer name on decrypt errors. - * - * Revision 1.5 2002/01/13 14:54:40 mdw - * Patch up zero-knowledge property by passing an encrypted log with a - * challenge, so that the prover can verify that the challenge is good. - * - * Revision 1.4 2001/06/22 19:40:36 mdw - * Support expiry of other peers' public keys. - * - * Revision 1.3 2001/06/19 22:07:09 mdw - * Cosmetic fixes. - * - * Revision 1.2 2001/02/16 21:24:27 mdw - * Rewrite for new key exchange protocol. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/keymgmt.c b/keymgmt.c index a1097134..2935f1c9 100644 --- a/keymgmt.c +++ b/keymgmt.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: keymgmt.c,v 1.4 2004/04/03 12:35:13 mdw Exp $ + * $Id: keymgmt.c,v 1.5 2004/04/08 01:36:17 mdw Exp $ * * Key loading and storing * @@ -26,23 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: keymgmt.c,v $ - * Revision 1.4 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.3 2001/06/22 19:40:36 mdw - * Support expiry of other peers' public keys. - * - * Revision 1.2 2001/06/19 22:07:09 mdw - * Cosmetic fixes. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/keyset.c b/keyset.c index 6aa68a95..0a320457 100644 --- a/keyset.c +++ b/keyset.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: keyset.c,v 1.9 2003/10/15 09:29:38 mdw Exp $ + * $Id: keyset.c,v 1.10 2004/04/08 01:36:17 mdw Exp $ * * Handling of symmetric keysets * @@ -26,44 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: keyset.c,v $ - * Revision 1.9 2003/10/15 09:29:38 mdw - * Cosmetic fix to changelog comment. - * - * Revision 1.8 2003/07/13 11:19:49 mdw - * Incompatible protocol fix! Include message type code under MAC tag to - * prevent cut-and-paste from key-exchange messages to general packet - * transport. - * - * Revision 1.7 2003/05/17 11:00:47 mdw - * Don't make scary messages just because one key didn't work on a message: - * only be frightened if they all fail. Set initial keyset refcount - * correctly. - * - * Revision 1.6 2003/04/06 10:26:35 mdw - * Report peer name on decrypt errors. - * - * Revision 1.5 2001/06/19 22:07:43 mdw - * Change the encrypted packet format to be non-malleable. - * - * Revision 1.4 2001/06/16 14:06:40 mdw - * Quantify collision probabilities for the stated data volume bounds. - * - * Revision 1.3 2001/02/16 21:39:55 mdw - * Major overhaul. Separate functions for manipulating keysets from - * functions for manipulating keyset lists. Introduce a concept of - * listening-only keys. - * - * Revision 1.2 2001/02/05 19:53:23 mdw - * Add sequence number protection. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/mallory.c b/mallory.c index bca2cff1..6a2768cc 100644 --- a/mallory.c +++ b/mallory.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mallory.c,v 1.3 2004/04/03 12:35:13 mdw Exp $ + * $Id: mallory.c,v 1.4 2004/04/08 01:36:17 mdw Exp $ * * An evil proxy for TrIPE * @@ -26,20 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: mallory.c,v $ - * Revision 1.3 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.2 2003/10/15 09:31:06 mdw - * Make forking work properly. - * - * Revision 1.1 2001/06/19 22:11:14 mdw - * The beginnings of a malicious proxy for TrIPE. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "config.h" diff --git a/peer.c b/peer.c index 3df4c4fe..87ea4e9e 100644 --- a/peer.c +++ b/peer.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: peer.c,v 1.10 2003/10/15 09:29:38 mdw Exp $ + * $Id: peer.c,v 1.11 2004/04/08 01:36:17 mdw Exp $ * * Communication with the peer * @@ -26,48 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: peer.c,v $ - * Revision 1.10 2003/10/15 09:29:38 mdw - * Cosmetic fix to changelog comment. - * - * Revision 1.9 2003/07/13 11:19:49 mdw - * Incompatible protocol fix! Include message type code under MAC tag to - * prevent cut-and-paste from key-exchange messages to general packet - * transport. - * - * Revision 1.8 2003/05/16 12:09:03 mdw - * Allow binding to a chosen address. - * - * Revision 1.7 2003/04/15 14:12:05 mdw - * Insert a newline to improve readability. - * - * Revision 1.6 2001/06/19 22:07:59 mdw - * Use magic number for packet size. - * - * Revision 1.5 2001/03/03 11:15:19 mdw - * Set the socket send and receive buffers to maximum. At least this way, - * we won't drop large packets on the floor. If the administrator wants to - * prevent fragmentation of TrIPE messages, he can lower the MTU on the - * tunnel interface. Getting path-MTU stuff out of the kernel is too much - * system-specific hard work for this program. - * - * Revision 1.4 2001/02/16 21:40:24 mdw - * Change key exchange message interface. Maintain statistics. - * - * Revision 1.3 2001/02/04 17:10:58 mdw - * Make file descriptors be nonblocking and close-on-exec. - * - * Revision 1.2 2001/02/03 22:40:29 mdw - * Put timer information into the entropy pool when packets are received - * and on similar events. Reseed the generator on the interval timer. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/pkstream.c b/pkstream.c index ba95728f..e291a9bd 100644 --- a/pkstream.c +++ b/pkstream.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: pkstream.c,v 1.2 2003/11/29 23:49:32 mdw Exp $ + * $Id: pkstream.c,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * Forwarding UDP packets over a stream * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: pkstream.c,v $ - * Revision 1.2 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.1 2003/04/23 12:53:28 mdw - * New pkstream program. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "config.h" diff --git a/servutil.c b/servutil.c index c3465e79..590327db 100644 --- a/servutil.c +++ b/servutil.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: servutil.c,v 1.4 2004/04/03 12:35:13 mdw Exp $ + * $Id: servutil.c,v 1.5 2004/04/08 01:36:17 mdw Exp $ * * Various handy server-only utilities * @@ -26,24 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: servutil.c,v $ - * Revision 1.4 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.3 2001/06/19 22:08:11 mdw - * Use magic number for packet size. - * - * Revision 1.2 2001/02/16 21:41:06 mdw - * Use new spare buffer for building MP textual representations. Add a - * function for making human-readable time strings. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/tripe-protocol.h b/tripe-protocol.h index bce8f1dc..1961785a 100644 --- a/tripe-protocol.h +++ b/tripe-protocol.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe-protocol.h,v 1.1 2003/10/15 09:30:18 mdw Exp $ + * $Id: tripe-protocol.h,v 1.2 2004/04/08 01:36:17 mdw Exp $ * * Protocol definition for TrIPE * @@ -26,14 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tripe-protocol.h,v $ - * Revision 1.1 2003/10/15 09:30:18 mdw - * Add support for Ethereal protocol analysis. - * - */ - #ifndef TRIPE_PROTOCOL_H #define TRIPE_PROTOCOL_H diff --git a/tripe.c b/tripe.c index 447a0c4c..9680dd4a 100644 --- a/tripe.c +++ b/tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.c,v 1.12 2003/11/29 23:49:32 mdw Exp $ + * $Id: tripe.c,v 1.13 2004/04/08 01:36:17 mdw Exp $ * * Main program * @@ -26,47 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tripe.c,v $ - * Revision 1.12 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.11 2003/05/17 11:02:03 mdw - * Document the new `-b' option. - * - * Revision 1.10 2003/05/16 12:09:03 mdw - * Allow binding to a chosen address. - * - * Revision 1.9 2003/04/15 14:11:09 mdw - * Rationalize the behaviour of the `-G' and `-U' options. - * - * Revision 1.8 2002/01/13 17:28:29 mdw - * Don't turn tracing on if tracing is turned off (!). - * - * Revision 1.7 2002/01/13 17:14:05 mdw - * Don't include the tracing option in the help if not compiled in. - * - * 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. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/tripe.h b/tripe.h index 2929200c..5138d110 100644 --- a/tripe.h +++ b/tripe.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.h,v 1.18 2004/04/03 12:35:13 mdw Exp $ + * $Id: tripe.h,v 1.19 2004/04/08 01:36:17 mdw Exp $ * * Main header file for TrIPE * @@ -26,70 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tripe.h,v $ - * Revision 1.18 2004/04/03 12:35:13 mdw - * Support elliptic curve key exchange. - * - * Revision 1.17 2003/10/15 09:30:18 mdw - * Add support for Ethereal protocol analysis. - * - * Revision 1.16 2003/07/13 11:19:49 mdw - * Incompatible protocol fix! Include message type code under MAC tag to - * prevent cut-and-paste from key-exchange messages to general packet - * transport. - * - * Revision 1.15 2003/05/16 12:09:03 mdw - * Allow binding to a chosen address. - * - * Revision 1.14 2003/04/06 10:36:33 mdw - * Rearrange so as not to include Linux headers unless we need to. - * - * Revision 1.13 2003/04/06 10:26:35 mdw - * Report peer name on decrypt errors. - * - * Revision 1.12 2003/04/06 10:25:17 mdw - * Support Linux TUN/TAP device. Fix some bugs. - * - * Revision 1.11 2002/01/13 14:57:42 mdw - * Fix crap typo. - * - * Revision 1.10 2002/01/13 14:54:58 mdw - * Provide MGF macros. - * - * Revision 1.9 2001/06/22 19:40:36 mdw - * Support expiry of other peers' public keys. - * - * Revision 1.8 2001/06/19 22:10:57 mdw - * Some more constants for the algorithms. Document the packet format - * change for non-malleability. Moved @buf@ definitions to separate header - * file. - * - * Revision 1.7 2001/03/03 12:07:08 mdw - * Rename word get and put functions now that there's 16-bit support. - * - * Revision 1.6 2001/02/19 19:11:09 mdw - * Output buffering on admin connections. - * - * Revision 1.5 2001/02/16 21:41:43 mdw - * Major changes. See source files for details. - * - * Revision 1.4 2001/02/05 19:56:37 mdw - * Sequence number protection, and BSD tunnels. - * - * Revision 1.3 2001/02/04 01:17:55 mdw - * Create a configuration header file to tidy up command lines. - * - * Revision 1.2 2001/02/03 22:40:29 mdw - * Put timer information into the entropy pool when packets are received - * and on similar events. Reseed the generator on the interval timer. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - #ifndef TRIPE_H #define TRIPE_H diff --git a/tun-bsd.c b/tun-bsd.c index bc82be3b..c9b8f7f0 100644 --- a/tun-bsd.c +++ b/tun-bsd.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tun-bsd.c,v 1.2 2003/11/29 23:49:32 mdw Exp $ + * $Id: tun-bsd.c,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * Tunnel interface for 4.4BSD-derived systems * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tun-bsd.c,v $ - * Revision 1.2 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.1 2001/02/05 19:48:18 mdw - * Initial support for BSD tunnel devices. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/tun-linux.c b/tun-linux.c index 84dca602..c30784d7 100644 --- a/tun-linux.c +++ b/tun-linux.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tun-linux.c,v 1.2 2003/11/29 23:49:32 mdw Exp $ + * $Id: tun-linux.c,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * Tunnel interface based on Linux TUN/TAP driver * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tun-linux.c,v $ - * Revision 1.2 2003/11/29 23:49:32 mdw - * Debianization. - * - * Revision 1.1 2003/04/06 10:25:17 mdw - * Support Linux TUN/TAP device. Fix some bugs. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/tun-unet.c b/tun-unet.c index 80cf7306..8d0225a3 100644 --- a/tun-unet.c +++ b/tun-unet.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tun-unet.c,v 1.5 2002/01/13 14:57:05 mdw Exp $ + * $Id: tun-unet.c,v 1.6 2004/04/08 01:36:17 mdw Exp $ * * Tunnel interface based on Linux Usernet * @@ -26,26 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: tun-unet.c,v $ - * Revision 1.5 2002/01/13 14:57:05 mdw - * Make @t_read@ be static, as it always should have been. - * - * Revision 1.4 2001/02/19 19:10:45 mdw - * Set unet devices to be point-to-point. - * - * Revision 1.3 2001/02/05 19:55:00 mdw - * Guard against inappropriate compilation. - * - * Revision 1.2 2001/02/04 17:10:58 mdw - * Make file descriptors be nonblocking and close-on-exec. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "tripe.h" diff --git a/util.c b/util.c index 54890b3f..ceeb0bd5 100644 --- a/util.c +++ b/util.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: util.c,v 1.2 2001/02/22 09:07:08 mdw Exp $ + * $Id: util.c,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * Utilities for the client and the server * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: util.c,v $ - * Revision 1.2 2001/02/22 09:07:08 mdw - * Separate detach-from-terminal code into a separate function. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - /*----- Header files ------------------------------------------------------*/ #include diff --git a/util.h b/util.h index f9c5c78f..675f0efe 100644 --- a/util.h +++ b/util.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: util.h,v 1.2 2001/02/22 09:07:08 mdw Exp $ + * $Id: util.h,v 1.3 2004/04/08 01:36:17 mdw Exp $ * * Utilities for the client and the server * @@ -26,17 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: util.h,v $ - * Revision 1.2 2001/02/22 09:07:08 mdw - * Separate detach-from-terminal code into a separate function. - * - * Revision 1.1 2001/02/03 20:26:37 mdw - * Initial checkin. - * - */ - #ifndef UTIL_H #define UTIL_H -- [mdw]