Deleted Added
full compact
if_tap.c (104393) if_tap.c (105228)
1/*
2 * Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * BASED ON:
27 * -------------------------------------------------------------------------
28 *
29 * Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
30 * Nottingham University 1987.
31 */
32
33/*
1/*
2 * Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * BASED ON:
27 * -------------------------------------------------------------------------
28 *
29 * Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
30 * Nottingham University 1987.
31 */
32
33/*
34 * $FreeBSD: head/sys/net/if_tap.c 104393 2002-10-03 02:13:00Z truckman $
34 * $FreeBSD: head/sys/net/if_tap.c 105228 2002-10-16 10:45:53Z phk $
35 * $Id: if_tap.c,v 0.21 2000/07/23 21:46:02 max Exp $
36 */
37
38#include "opt_inet.h"
39
40#include <sys/param.h>
41#include <sys/conf.h>
42#include <sys/filedesc.h>

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

530} /* tapifinit */
531
532
533/*
534 * tapifioctl
535 *
536 * Process an ioctl request on network interface
537 */
35 * $Id: if_tap.c,v 0.21 2000/07/23 21:46:02 max Exp $
36 */
37
38#include "opt_inet.h"
39
40#include <sys/param.h>
41#include <sys/conf.h>
42#include <sys/filedesc.h>

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

530} /* tapifinit */
531
532
533/*
534 * tapifioctl
535 *
536 * Process an ioctl request on network interface
537 */
538int
538static int
539tapifioctl(ifp, cmd, data)
540 struct ifnet *ifp;
541 u_long cmd;
542 caddr_t data;
543{
544 struct tap_softc *tp = (struct tap_softc *)(ifp->if_softc);
545 struct ifstat *ifs = NULL;
546 int s, dummy;

--- 400 unchanged lines hidden ---
539tapifioctl(ifp, cmd, data)
540 struct ifnet *ifp;
541 u_long cmd;
542 caddr_t data;
543{
544 struct tap_softc *tp = (struct tap_softc *)(ifp->if_softc);
545 struct ifstat *ifs = NULL;
546 int s, dummy;

--- 400 unchanged lines hidden ---