Deleted Added
full compact
if_tap.c (236724) if_tap.c (236725)
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 236724 2012-06-07 19:46:46Z trociny $
34 * $FreeBSD: head/sys/net/if_tap.c 236725 2012-06-07 19:48:45Z trociny $
35 * $Id: if_tap.c,v 0.21 2000/07/23 21:46:02 max Exp $
36 */
37
38#include "opt_compat.h"
39#include "opt_inet.h"
40
41#include <sys/param.h>
42#include <sys/conf.h>

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

60#include <sys/uio.h>
61#include <sys/queue.h>
62
63#include <net/bpf.h>
64#include <net/ethernet.h>
65#include <net/if.h>
66#include <net/if_clone.h>
67#include <net/if_dl.h>
35 * $Id: if_tap.c,v 0.21 2000/07/23 21:46:02 max Exp $
36 */
37
38#include "opt_compat.h"
39#include "opt_inet.h"
40
41#include <sys/param.h>
42#include <sys/conf.h>

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

60#include <sys/uio.h>
61#include <sys/queue.h>
62
63#include <net/bpf.h>
64#include <net/ethernet.h>
65#include <net/if.h>
66#include <net/if_clone.h>
67#include <net/if_dl.h>
68#include <net/route.h>
69#include <net/if_types.h>
68#include <net/if_types.h>
69#include <net/route.h>
70#include <net/vnet.h>
71
72#include <netinet/in.h>
73
74#include <net/if_tapvar.h>
75#include <net/if_tap.h>
76
77

--- 1019 unchanged lines hidden ---
70#include <net/vnet.h>
71
72#include <netinet/in.h>
73
74#include <net/if_tapvar.h>
75#include <net/if_tap.h>
76
77

--- 1019 unchanged lines hidden ---