ng_pppoe.c (10b3b54548f2290bbe8d8f88c59c28d12b7a635d) ng_pppoe.c (5a73d193c4b8c7eadaa7573fc22a36a665279a2f)
1/*
2 * ng_pppoe.c
3 */
4
5/*-
6 * Copyright (c) 1996-1999 Whistle Communications, Inc.
7 * All rights reserved.
8 *

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

1276/*
1277 * Receive data from ether and do something with it.
1278 */
1279static int
1280ng_pppoe_rcvdata_ether(hook_p hook, item_p item)
1281{
1282 node_p node = NG_HOOK_NODE(hook);
1283 const priv_p privp = NG_NODE_PRIVATE(node);
1/*
2 * ng_pppoe.c
3 */
4
5/*-
6 * Copyright (c) 1996-1999 Whistle Communications, Inc.
7 * All rights reserved.
8 *

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

1276/*
1277 * Receive data from ether and do something with it.
1278 */
1279static int
1280ng_pppoe_rcvdata_ether(hook_p hook, item_p item)
1281{
1282 node_p node = NG_HOOK_NODE(hook);
1283 const priv_p privp = NG_NODE_PRIVATE(node);
1284 sessp sp = NG_HOOK_PRIVATE(hook);
1284 sessp sp;
1285 const struct pppoe_tag *utag = NULL, *tag = NULL;
1286 const struct pppoe_full_hdr *wh;
1287 const struct pppoe_hdr *ph;
1288 negp neg = NULL;
1289 struct mbuf *m;
1290 hook_p sendhook;
1291 int error = 0;
1292 uint16_t session;

--- 624 unchanged lines hidden ---
1285 const struct pppoe_tag *utag = NULL, *tag = NULL;
1286 const struct pppoe_full_hdr *wh;
1287 const struct pppoe_hdr *ph;
1288 negp neg = NULL;
1289 struct mbuf *m;
1290 hook_p sendhook;
1291 int error = 0;
1292 uint16_t session;

--- 624 unchanged lines hidden ---