Deleted Added
sdiff udiff text old ( 146525 ) new ( 155602 )
full compact
1/*
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Author: Harti Brandt <harti@freebsd.org>
7 *
8 * Redistribution and use in source and binary forms, with or without

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

74 * Should be set via the mibif_notify function.
75 */
76 mibif_notify_f xnotify;
77 void *xnotify_data;
78 const struct lmodule *xnotify_mod;
79
80 /* to be set by ifType specific modules. This is ifSpecific. */
81 struct asn_oid spec_oid;
82
83 /* private data - don't touch */
84 void *private;
85};
86
87/*
88 * Interface IP-address table.
89 */
90struct mibifa {
91 TAILQ_ENTRY(mibifa) link;
92 struct in_addr inaddr;

--- 77 unchanged lines hidden ---