| debug.c (e489a907c49f80c9fe0e4738ec08e4f2407da3df) | debug.c (baa60a3b175739c68b9eaf6797ed415ef38ad2c3) |
|---|---|
| 1 2/* 3 * debug.c 4 * 5 * Copyright (c) 1996-1999 Whistle Communications, Inc. 6 * All rights reserved. 7 * 8 * Subject to the following obligations and disclaimer of warranty, use and --- 27 unchanged lines hidden (view full) --- 36 * 37 * Author: Archie Cobbs <archie@whistle.com> 38 * 39 * $FreeBSD$ 40 * $Whistle: debug.c,v 1.24 1999/01/24 01:15:33 archie Exp $ 41 */ 42 43#include <sys/types.h> | 1 2/* 3 * debug.c 4 * 5 * Copyright (c) 1996-1999 Whistle Communications, Inc. 6 * All rights reserved. 7 * 8 * Subject to the following obligations and disclaimer of warranty, use and --- 27 unchanged lines hidden (view full) --- 36 * 37 * Author: Archie Cobbs <archie@whistle.com> 38 * 39 * $FreeBSD$ 40 * $Whistle: debug.c,v 1.24 1999/01/24 01:15:33 archie Exp $ 41 */ 42 43#include <sys/types.h> |
| 44#include <sys/time.h> 45#include <sys/ioctl.h> |
|
| 44 45#include <stdarg.h> 46 47#include <netinet/in.h> 48#include <net/ethernet.h> | 46 47#include <stdarg.h> 48 49#include <netinet/in.h> 50#include <net/ethernet.h> |
| 51#include <net/bpf.h> |
|
| 49 50#include <netgraph/ng_message.h> 51#include <netgraph/ng_socket.h> 52 53#include "netgraph.h" 54#include "internal.h" 55 56#include <netgraph/ng_UI.h> 57#include <netgraph/ng_async.h> | 52 53#include <netgraph/ng_message.h> 54#include <netgraph/ng_socket.h> 55 56#include "netgraph.h" 57#include "internal.h" 58 59#include <netgraph/ng_UI.h> 60#include <netgraph/ng_async.h> |
| 61#include <netgraph/ng_bpf.h> |
|
| 58#include <netgraph/ng_cisco.h> 59#include <netgraph/ng_echo.h> 60#include <netgraph/ng_ether.h> 61#include <netgraph/ng_frame_relay.h> 62#include <netgraph/ng_hole.h> 63#include <netgraph/ng_iface.h> 64#include <netgraph/ng_ksocket.h> 65#include <netgraph/ng_lmi.h> --- 232 unchanged lines hidden --- | 62#include <netgraph/ng_cisco.h> 63#include <netgraph/ng_echo.h> 64#include <netgraph/ng_ether.h> 65#include <netgraph/ng_frame_relay.h> 66#include <netgraph/ng_hole.h> 67#include <netgraph/ng_iface.h> 68#include <netgraph/ng_ksocket.h> 69#include <netgraph/ng_lmi.h> --- 232 unchanged lines hidden --- |