Module Name:    src
Committed By:   christos
Date:           Sat Nov 23 22:23:26 UTC 2013

Modified Files:
        src/sys/netinet: in_pcb_hdr.h

Log Message:
expose the pcb queue structure for convenience


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/netinet/in_pcb_hdr.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/in_pcb_hdr.h
diff -u src/sys/netinet/in_pcb_hdr.h:1.9 src/sys/netinet/in_pcb_hdr.h:1.10
--- src/sys/netinet/in_pcb_hdr.h:1.9	Sat Nov 23 09:20:21 2013
+++ src/sys/netinet/in_pcb_hdr.h	Sat Nov 23 17:23:26 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in_pcb_hdr.h,v 1.9 2013/11/23 14:20:21 christos Exp $	*/
+/*	$NetBSD: in_pcb_hdr.h,v 1.10 2013/11/23 22:23:26 christos Exp $	*/
 
 /*
  * Copyright (C) 2003 WIDE Project.
@@ -110,8 +110,10 @@ typedef struct vestigial_hooks {
 			   struct vestigial_inpcb *);
 } vestigial_hooks_t;
 
+TAILQ_HEAD(inpcbqueue, inpcb_hdr);
+
 struct inpcbtable {
-	TAILQ_HEAD(, inpcb_hdr) inpt_queue;
+	struct	  inpcbqueue inpt_queue;
 	struct	  inpcbhead *inpt_porthashtbl;
 	struct	  inpcbhead *inpt_bindhashtbl;
 	struct	  inpcbhead *inpt_connecthashtbl;

Reply via email to