summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'node.h')
-rw-r--r--node.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/node.h b/node.h
index 72adcbebb..de0013086 100644
--- a/node.h
+++ b/node.h
@@ -59,6 +59,18 @@
/*---------------------------------------------------------------------------*/
/*--------Types--------------------------------------------------------------*/
+/*A list element containing a port*/
+struct port_el
+{
+ /*the port */
+ mach_port_t p;
+
+ /*the next element in the list */
+ struct port_el *next;
+}; /*struct port_el */
+/*---------------------------------------------------------------------------*/
+typedef struct port_el port_el_t;
+/*---------------------------------------------------------------------------*/
/*The user-defined node for libnetfs*/
struct netnode
{