Miscellaneous copyright updates.
This commit is contained in:
parent
8cb4bb619d
commit
77be52422d
4 changed files with 21 additions and 40 deletions
|
@ -1,6 +1,7 @@
|
|||
/*
|
||||
encr.c -- everything that deals with encryption
|
||||
Copyright (C) 1998,1999,2000 Ivo Timmermans <zarq@iname.com>
|
||||
Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
|
||||
2000 Guus Sliepen <guus@sliepen.warande.net>
|
||||
|
||||
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
|
||||
|
@ -15,6 +16,8 @@
|
|||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
$Id: encr.c,v 1.12 2000/05/31 18:23:06 zarq Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
|
25
src/net.c
25
src/net.c
|
@ -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: net.c,v 1.34 2000/05/30 12:38:15 zarq Exp $
|
||||
$Id: net.c,v 1.35 2000/05/31 18:23:05 zarq Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
@ -848,24 +848,21 @@ cp
|
|||
/* Find all connections that were lost because they were behind cl
|
||||
(the connection that was dropped). */
|
||||
for(p = conn_list; p != NULL; p = p->next)
|
||||
{
|
||||
if(p->nexthop == cl)
|
||||
{
|
||||
p->status.active = 0;
|
||||
p->status.remove = 1;
|
||||
}
|
||||
}
|
||||
if(p->nexthop == cl)
|
||||
{
|
||||
p->status.active = 0;
|
||||
p->status.remove = 1;
|
||||
}
|
||||
|
||||
cp
|
||||
/* Then send a notification about all these connections to all hosts
|
||||
that are still connected to us. */
|
||||
for(p = conn_list; p != NULL; p = p->next)
|
||||
{
|
||||
if(!p->status.remove && p->status.meta)
|
||||
for(q = conn_list; q != NULL; q = q->next)
|
||||
if(q->status.remove)
|
||||
send_del_host(p, q);
|
||||
}
|
||||
if(!p->status.remove && p->status.meta)
|
||||
for(q = conn_list; q != NULL; q = q->next)
|
||||
if(q->status.remove)
|
||||
send_del_host(p, q);
|
||||
|
||||
cp
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
$Id: netutl.c,v 1.11 2000/05/30 11:18:12 zarq Exp $
|
||||
$Id: netutl.c,v 1.12 2000/05/31 18:23:06 zarq Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
@ -51,7 +51,7 @@ conn_list_t *lookup_conn(ip_t ip)
|
|||
cp
|
||||
/* Exact match suggested by James B. MacLean */
|
||||
for(p = conn_list; p != NULL; p = p->next)
|
||||
if((ip == p->vpn_ip) && p->status.active)
|
||||
if((ip == p->vpn_ip) && p->status.active)
|
||||
return p;
|
||||
for(p = conn_list; p != NULL; p = p->next)
|
||||
if(((ip & p->vpn_mask) == (p->vpn_ip & p->vpn_mask)) && p->status.active)
|
||||
|
|
27
src/tincd.c
27
src/tincd.c
|
@ -1,6 +1,7 @@
|
|||
/*
|
||||
tincd.c -- the main file for tincd
|
||||
Copyright (C) 1998,1999,2000 Ivo Timmermans <zarq@iname.com>
|
||||
Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
|
||||
2000 Guus Sliepen <guus@sliepen.warande.net>
|
||||
|
||||
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
|
||||
|
@ -15,29 +16,9 @@
|
|||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
* $Log: tincd.c,v $
|
||||
* Revision 1.9 2000/05/29 21:01:26 zarq
|
||||
* Internationalization of tinc.
|
||||
*
|
||||
* Revision 1.8 2000/05/14 12:22:42 guus
|
||||
* Cleanups.
|
||||
*
|
||||
* Revision 1.7 2000/04/27 13:47:51 zarq
|
||||
* Default config file name is tinc.conf, and pidfile is tinc.pid.
|
||||
*
|
||||
* Revision 1.6 2000/04/18 16:04:10 zarq
|
||||
* Address for bugreports changed to tinc@nl.linux.org.
|
||||
*
|
||||
* Revision 1.5 2000/04/17 16:23:29 zarq
|
||||
* Pass the requested size from xmalloc() and xrealloc() on to xalloc_fail_func()
|
||||
*
|
||||
* Revision 1.4 2000/04/06 18:28:29 zarq
|
||||
* New option -D, don't detach.
|
||||
*
|
||||
*/
|
||||
$Id: tincd.c,v 1.10 2000/05/31 18:23:06 zarq Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue