Keep track of a failing dynamic server and don't use it while failing.
[libradsec.git] / list.h
diff --git a/list.h b/list.h
index 4607317..80c0128 100644 (file)
--- a/list.h
+++ b/list.h
@@ -36,7 +36,7 @@ void *list_shift(struct list *list);
 
 /* removes first entry with matching data pointer */
 void list_removedata(struct list *list, void *data);
-    
+
 /* returns first node */
 struct list_node *list_first(struct list *list);
 
@@ -45,3 +45,7 @@ struct list_node *list_next(struct list_node *node);
 
 /* returns number of nodes */
 uint32_t list_count(struct list *list);
+
+/* Local Variables: */
+/* c-file-style: "stroustrup" */
+/* End: */