1 /* $Id: rset.c,v 1.19 2004-01-22 11:27:22 adam Exp $
2 Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
31 RSET rset_create(const struct rset_control *sel, void *parms)
36 logf (LOG_DEBUG, "rs_create(%s)", sel->desc);
37 rnew = (RSET) xmalloc(sizeof(*rnew));
41 rnew->rset_terms = NULL;
42 rnew->no_rset_terms = 0;
43 rnew->buf = (*sel->f_create)(rnew, sel, parms);
44 logf (LOG_DEBUG, "no_rset_terms: %d", rnew->no_rset_terms);
45 for (i = 0; i<rnew->no_rset_terms; i++)
46 logf (LOG_DEBUG, " %s", rnew->rset_terms[i]->name);
50 void rset_delete (RSET rs)
55 (*rs->control->f_delete)(rs);
60 RSET rset_dup (RSET rs)
66 int rset_default_forward(RSFD rfd, void *buf, const void *untilbuf)
68 logf (LOG_FATAL, "rset_default-forward not yet implemented");
72 RSET_TERM *rset_terms(RSET rs, int *no)
74 *no = rs->no_rset_terms;
75 return rs->rset_terms;
78 RSET_TERM rset_term_create (const char *name, int length, const char *flags,
81 RSET_TERM t = (RSET_TERM) xmalloc (sizeof(*t));
84 else if (length == -1)
85 t->name = xstrdup (name);
88 t->name = (char*) xmalloc (length+1);
89 memcpy (t->name, name, length);
90 t->name[length] = '\0';
95 t->flags = xstrdup (flags);
102 void rset_term_destroy (RSET_TERM t)
109 RSET_TERM rset_term_dup (RSET_TERM t)
111 RSET_TERM nt = (RSET_TERM) xmalloc (sizeof(*nt));
113 nt->name = xstrdup (t->name);
117 nt->flags = xstrdup (t->flags);