summaryrefslogtreecommitdiffstats
path: root/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'server.h')
-rw-r--r--server.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/server.h b/server.h
index 4134638..daaa815 100644
--- a/server.h
+++ b/server.h
@@ -1,12 +1,13 @@
#ifndef fooflxserverhfoo
#define fooflxserverhfoo
+struct _flxEntry;
+typedef struct _flxEntry flxEntry;
+
#include "flx.h"
#include "iface.h"
#include "prioq.h"
-struct _flxEntry;
-typedef struct _flxEntry flxEntry;
struct _flxEntry {
flxRecord rr;
gint id;
@@ -59,6 +60,10 @@ struct _flxServer {
flxPrioQueue *query_job_queue;
flxPrioQueue *response_job_queue;
+
+ gint hinfo_rr_id;
+
+ gchar *hostname;
};
flxQueryJob* flx_query_job_new(void);