Full support for rp_permitted filters using new filter structures, etc.
[trust_router.git] / include / tr_rp.h
index 81a9c14..43a3b58 100644 (file)
 #define TR_RP_H
 
 #include <tr.h>
+#include <tr_filter.h>
 
 #define TR_MAX_GSS_NAMES 5
 
 typedef struct tr_rp_client {
   struct tr_rp_client *next;
   struct tr_rp_client *comm_next;
-  TR_NAME *rp_match;
   TR_NAME *gss_names[TR_MAX_GSS_NAMES];
-  // TR_FILTER *filters;
+  TR_FILTER *filter;
 } TR_RP_CLIENT;
 
-/* Structure to make a link list of RP realms by name for community config */
+/* Structure to make a linked list of RP realms by name for community config */
 typedef struct tr_rp_realm {
   struct tr_rp_realm *next;
   TR_NAME *realm_name;