moved to linked lists for replyqs, removed replyq size and count
[radsecproxy.git] / list.c
diff --git a/list.c b/list.c
index 578c61a..e9dcebb 100644 (file)
--- a/list.c
+++ b/list.c
@@ -23,7 +23,7 @@ void list_destroy(struct list *list) {
 }
 
 /* appends entry to list; returns 1 if ok, 0 if malloc fails */
-int list_add(struct list *list, void *data) {
+int list_push(struct list *list, void *data) {
     struct list_node *node;
 
     node = malloc(sizeof(struct list_node));
@@ -42,6 +42,22 @@ int list_add(struct list *list, void *data) {
     return 1;
 }
 
+/* removes first entry from list and returns data */
+void *list_shift(struct list *list) {
+    struct list_node *node;
+    void *data;
+    
+    if (!list->first)
+       return NULL;
+    
+    node = list->first;
+    list->first = node->next;
+    data = node->data;
+    free(node);
+    
+    return data;
+}
+
 /* returns first node */
 struct list_node *list_first(struct list *list) {
     return list->first;