From cfb71271f0ade8edcbb29563e6666bc265097092 Mon Sep 17 00:00:00 2001 From: archie Date: Tue, 19 Sep 2000 03:22:06 +0000 Subject: [PATCH] Rename "struct session" to "struct sess_con" to avoid conflict with upcoming "struct session" in proc.h. Requested by: jasone --- sys/netgraph/ng_pppoe.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/netgraph/ng_pppoe.c b/sys/netgraph/ng_pppoe.c index be43cd454bee..a74db2671bd1 100644 --- a/sys/netgraph/ng_pppoe.c +++ b/sys/netgraph/ng_pppoe.c @@ -134,16 +134,16 @@ typedef struct sess_neg *negp; /* * Session information that is needed after connection. */ -struct session { +struct sess_con { hook_p hook; u_int16_t Session_ID; - struct session *hash_next; /* not yet uesed */ enum state state; char creator[NG_NODELEN + 1]; /* who to notify */ struct pppoe_full_hdr pkt_hdr; /* used when connected */ negp neg; /* used when negotiating */ + /*struct sess_con *hash_next;*/ /* not yet used */ }; -typedef struct session *sessp; +typedef struct sess_con *sessp; /* * Information we store for each node @@ -155,7 +155,7 @@ struct PPPOE { u_int packets_in; /* packets in from ethernet */ u_int packets_out; /* packets out towards ethernet */ u_int32_t flags; - /*struct session *buckets[HASH_SIZE];*/ /* not yet used */ + /*struct sess_con *buckets[HASH_SIZE];*/ /* not yet used */ }; typedef struct PPPOE *priv_p;