Deleted Added
full compact
input.c (12268) input.c (12620)
1/*
2 * Copyright (c) 1985, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Copyright (c) 1995 John Hay. All rights reserved.
6 *
7 * This file includes significant work done at Cornell University by
8 * Bill Nesheim. That work included by permission.

--- 21 unchanged lines hidden (view full) ---

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
1/*
2 * Copyright (c) 1985, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Copyright (c) 1995 John Hay. All rights reserved.
6 *
7 * This file includes significant work done at Cornell University by
8 * Bill Nesheim. That work included by permission.

--- 21 unchanged lines hidden (view full) ---

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * $Id: input.c,v 1.1 1995/10/26 21:28:16 julian Exp $
38 * $Id: input.c,v 1.2 1995/11/13 21:01:30 julian Exp $
39 */
40
41#ifndef lint
42static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 6/5/93";
43#endif /* not lint */
44
45/*
46 * IPX Routing Table Management Daemon

--- 198 unchanged lines hidden (view full) ---

245 ntohs(n->rip_metric == rt->rt_metric)) {
246 register struct rt_entry *trt = rt->rt_clone;
247
248 while (trt) {
249 if (equal(from, &trt->rt_router)) {
250 trt->rt_timer = 0;
251 break;
252 }
39 */
40
41#ifndef lint
42static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 6/5/93";
43#endif /* not lint */
44
45/*
46 * IPX Routing Table Management Daemon

--- 198 unchanged lines hidden (view full) ---

245 ntohs(n->rip_metric == rt->rt_metric)) {
246 register struct rt_entry *trt = rt->rt_clone;
247
248 while (trt) {
249 if (equal(from, &trt->rt_router)) {
250 trt->rt_timer = 0;
251 break;
252 }
253 trt = trt->rt_clone;
253 }
254 if (trt == NULL) {
255 rtadd_clone(rt, sa, from,
256 ntohs(n->rip_metric),
257 ntohs(n->rip_ticks), 0);
258 }
259 continue;
260 }

--- 20 unchanged lines hidden ---
254 }
255 if (trt == NULL) {
256 rtadd_clone(rt, sa, from,
257 ntohs(n->rip_metric),
258 ntohs(n->rip_ticks), 0);
259 }
260 continue;
261 }

--- 20 unchanged lines hidden ---