Deleted Added
full compact
ng_rfc1490.c (69922) ng_rfc1490.c (70159)
1
2/*
3 * ng_rfc1490.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_rfc1490.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_rfc1490.c 69922 2000-12-12 18:52:14Z julian $
39 * $FreeBSD: head/sys/netgraph/ng_rfc1490.c 70159 2000-12-18 20:03:32Z julian $
40 * $Whistle: ng_rfc1490.c,v 1.22 1999/11/01 09:24:52 julian Exp $
41 */
42
43/*
44 * This node does RFC 1490 multiplexing.
45 *
46 * NOTE: RFC 1490 is updated by RFC 2427.
47 */

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

91static ng_rcvmsg_t ng_rfc1490_rcvmsg;
92static ng_shutdown_t ng_rfc1490_rmnode;
93static ng_newhook_t ng_rfc1490_newhook;
94static ng_rcvdata_t ng_rfc1490_rcvdata;
95static ng_disconnect_t ng_rfc1490_disconnect;
96
97/* Node type descriptor */
98static struct ng_type typestruct = {
40 * $Whistle: ng_rfc1490.c,v 1.22 1999/11/01 09:24:52 julian Exp $
41 */
42
43/*
44 * This node does RFC 1490 multiplexing.
45 *
46 * NOTE: RFC 1490 is updated by RFC 2427.
47 */

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

91static ng_rcvmsg_t ng_rfc1490_rcvmsg;
92static ng_shutdown_t ng_rfc1490_rmnode;
93static ng_newhook_t ng_rfc1490_newhook;
94static ng_rcvdata_t ng_rfc1490_rcvdata;
95static ng_disconnect_t ng_rfc1490_disconnect;
96
97/* Node type descriptor */
98static struct ng_type typestruct = {
99 NG_VERSION,
99 NG_ABI_VERSION,
100 NG_RFC1490_NODE_TYPE,
101 NULL,
102 ng_rfc1490_constructor,
103 ng_rfc1490_rcvmsg,
104 ng_rfc1490_rmnode,
105 ng_rfc1490_newhook,
106 NULL,
107 NULL,

--- 238 unchanged lines hidden ---
100 NG_RFC1490_NODE_TYPE,
101 NULL,
102 ng_rfc1490_constructor,
103 ng_rfc1490_rcvmsg,
104 ng_rfc1490_rmnode,
105 ng_rfc1490_newhook,
106 NULL,
107 NULL,

--- 238 unchanged lines hidden ---