Deleted Added
full compact
if_disc.c (97290) if_disc.c (106939)
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. 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 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * From: @(#)if_loop.c 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. 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 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * From: @(#)if_loop.c 8.1 (Berkeley) 6/10/93
34 * $FreeBSD: head/sys/net/if_disc.c 97290 2002-05-25 20:20:35Z brooks $
34 * $FreeBSD: head/sys/net/if_disc.c 106939 2002-11-15 00:00:15Z sam $
35 */
36
37/*
38 * Discard interface driver for protocol testing and timing.
39 * (Based on the loopback.)
40 */
41
42#include <sys/param.h>

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

175 */
176 struct mbuf m0;
177 u_int af = dst->sa_family;
178
179 m0.m_next = m;
180 m0.m_len = 4;
181 m0.m_data = (char *)&af;
182
35 */
36
37/*
38 * Discard interface driver for protocol testing and timing.
39 * (Based on the loopback.)
40 */
41
42#include <sys/param.h>

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

175 */
176 struct mbuf m0;
177 u_int af = dst->sa_family;
178
179 m0.m_next = m;
180 m0.m_len = 4;
181 m0.m_data = (char *)&af;
182
183 bpf_mtap(ifp, &m0);
183 BPF_MTAP(ifp, &m0);
184 }
185 m->m_pkthdr.rcvif = ifp;
186
187 ifp->if_opackets++;
188 ifp->if_obytes += m->m_pkthdr.len;
189
190 m_freem(m);
191 return 0;

--- 64 unchanged lines hidden ---
184 }
185 m->m_pkthdr.rcvif = ifp;
186
187 ifp->if_opackets++;
188 ifp->if_obytes += m->m_pkthdr.len;
189
190 m_freem(m);
191 return 0;

--- 64 unchanged lines hidden ---