Deleted Added
full compact
ng_UI.c (69922) ng_UI.c (70159)
1
2/*
3 * ng_UI.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

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

31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Julian Elischer <julian@freebsd.org>
38 *
1
2/*
3 * ng_UI.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

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

31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Julian Elischer <julian@freebsd.org>
38 *
39 * $FreeBSD: head/sys/netgraph/ng_UI.c 69922 2000-12-12 18:52:14Z julian $
39 * $FreeBSD: head/sys/netgraph/ng_UI.c 70159 2000-12-18 20:03:32Z julian $
40 * $Whistle: ng_UI.c,v 1.14 1999/11/01 09:24:51 julian Exp $
41 */
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/errno.h>
46#include <sys/kernel.h>
47#include <sys/malloc.h>

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

72static ng_rcvmsg_t ng_UI_rcvmsg;
73static ng_shutdown_t ng_UI_rmnode;
74static ng_newhook_t ng_UI_newhook;
75static ng_rcvdata_t ng_UI_rcvdata;
76static ng_disconnect_t ng_UI_disconnect;
77
78/* Node type descriptor */
79static struct ng_type typestruct = {
40 * $Whistle: ng_UI.c,v 1.14 1999/11/01 09:24:51 julian Exp $
41 */
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/errno.h>
46#include <sys/kernel.h>
47#include <sys/malloc.h>

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

72static ng_rcvmsg_t ng_UI_rcvmsg;
73static ng_shutdown_t ng_UI_rmnode;
74static ng_newhook_t ng_UI_newhook;
75static ng_rcvdata_t ng_UI_rcvdata;
76static ng_disconnect_t ng_UI_disconnect;
77
78/* Node type descriptor */
79static struct ng_type typestruct = {
80 NG_VERSION,
80 NG_ABI_VERSION,
81 NG_UI_NODE_TYPE,
82 NULL,
83 ng_UI_constructor,
84 ng_UI_rcvmsg,
85 ng_UI_rmnode,
86 ng_UI_newhook,
87 NULL,
88 NULL,

--- 164 unchanged lines hidden ---
81 NG_UI_NODE_TYPE,
82 NULL,
83 ng_UI_constructor,
84 ng_UI_rcvmsg,
85 ng_UI_rmnode,
86 ng_UI_newhook,
87 NULL,
88 NULL,

--- 164 unchanged lines hidden ---