Use json_is_true() in place of json_boolean_value() for compatibility
[trust_router.git] / include / tr.h
index 8ca9c37..0c2b37d 100644 (file)
 #ifndef TR_H
 #define TR_H
 
-#include <trust_router/tid.h>
-#include <trust_router/tr_name.h>
-#include <tr_msg.h>
+#include <talloc.h>
 
-#define TRUST_ROUTER_PORT      12308
+#include <tid_internal.h>
+#include <tr_msg.h>
+#include <tr_rp.h>
+#include <tr_trp.h>
+#include <tr_cfgwatch.h>
+#include <tr_config.h>
 
-typedef struct tr_instance {
-  struct tr_cfg *new_cfg;      /* unapplyed configuration */
-  struct tr_cfg *active_cfg;
-  TIDS_INSTANCE *tids;
-} TR_INSTANCE;
+/* struct defined in tr_trp.h */
+typedef struct tr_instance TR_INSTANCE;
 
-TR_INSTANCE *tr_create(void);
+TR_INSTANCE *tr_create(TALLOC_CTX *mem_ctx);
 void tr_destroy(TR_INSTANCE *tr);
 
 #endif