Extend 'struct pdp_t' with a void *priv pointer for application use
diff --git a/gtp/pdp.h b/gtp/pdp.h
index 13ae280..624c4ac 100644
--- a/gtp/pdp.h
+++ b/gtp/pdp.h
@@ -212,7 +212,8 @@
   struct in_addr hisaddr0;       /* Server address */
   struct in_addr hisaddr1;       /* Server address */
 
-
+  /* to be used by libgtp callers/users (to attach their own private state) */
+  void *priv;
 };