Return separate counts of TID reqs that succeed and result in error
[trust_router.git] / include / tr.h
index 8548bd1..0c2b37d 100644 (file)
 #ifndef TR_H
 #define TR_H
 
+#include <talloc.h>
+
+#include <tid_internal.h>
 #include <tr_msg.h>
-#include <trust_router/tr_name.h>
+#include <tr_rp.h>
+#include <tr_trp.h>
+#include <tr_cfgwatch.h>
 #include <tr_config.h>
-#include <trust_router/tid.h>
 
-#define TRUST_ROUTER_PORT      12308
+/* struct defined in tr_trp.h */
+typedef struct tr_instance TR_INSTANCE;
+
+TR_INSTANCE *tr_create(TALLOC_CTX *mem_ctx);
+void tr_destroy(TR_INSTANCE *tr);
 
 #endif