]> git.meshlink.io Git - meshlink/blobdiff - src/conf.c
- Fixed indirectdata=no problem
[meshlink] / src / conf.c
index 0eab0efd0534ffc52ec94a54eef2d77f0de72a8d..1e1c60f6c2af3c14af9e38a52a650d71e66ac013 100644 (file)
@@ -19,7 +19,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: conf.c,v 1.9.4.1 2000/06/17 20:55:54 zarq Exp $
+    $Id: conf.c,v 1.9.4.2 2000/06/27 15:08:57 guus Exp $
 */
 
 
@@ -219,3 +219,21 @@ get_config_val(which_t type)
   /* Not found */
   return NULL;
 }
+
+/*
+  Support for multiple config lines.
+  Index is used to get a specific value, 0 being the first, 1 the second etc.
+*/
+const config_t *
+get_next_config_val(which_t type, int index)
+{
+  config_t *p;
+  
+  for(p = config; p != NULL; p = p->next)
+    if(p->which == type)
+      if(--index < 0)
+        return p;
+  
+  /* Not found */
+  return NULL;
+}