Remove an unused error code and unusued RSE_MAX.
authorLinus Nordberg <linus@nordberg.se>
Wed, 8 May 2013 10:00:00 +0000 (12:00 +0200)
committerLinus Nordberg <linus@nordberg.se>
Wed, 8 May 2013 15:04:32 +0000 (17:04 +0200)
Also, remove unused file attr.c.

lib/attr.c [deleted file]
lib/include/radsec/radsec.h

diff --git a/lib/attr.c b/lib/attr.c
deleted file mode 100644 (file)
index 74d352c..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
-   See LICENSE for licensing information.  */
-
-/* NOTE: This file is not in use at the moment (libradsec-0.0.1).  */
-
-#if defined HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <radius/client.h>
-#include <radsec/radsec.h>
-#include <radsec/radsec-impl.h>
-
-int
-rs_attr_create(struct rs_connection *conn,
-              struct rs_attr **attr,
-              const char *type,
-              const char *val)
-{
-  VALUE_PAIR *vp;
-  struct rs_attr *a;
-
-  *attr = NULL;
-  a = (struct rs_attr *) malloc (sizeof(struct rs_attr));
-  if (!a)
-    return rs_err_conn_push_fl (conn, RSE_NOMEM, __FILE__, __LINE__, NULL);
-  memset (a, 0, sizeof(struct rs_attr));
-
-  vp = pairmake (type, val, T_OP_EQ);
-  if (!vp)
-    {
-      rs_attr_destroy (a);
-      return rs_err_conn_push_fl (conn, RSE_FR, __FILE__, __LINE__,
-                                 "pairmake: %s", fr_strerror ());
-    }
-
-  a->vp = vp;
-  *attr = a;
-  return RSE_OK;
-}
-
-void
-rs_attr_destroy (struct rs_attr *attr)
-{
-  if (attr->vp)
-    pairfree (&attr->vp);
-  free (attr);
-}
index 2d20b6e..00c8d7b 100644 (file)
@@ -29,7 +29,6 @@ enum rs_error_code {
     RSE_INVALID_CTX = 3,
     RSE_INVALID_CONN = 4,
     RSE_CONN_TYPE_MISMATCH = 5,
-    RSE_FR = 6,
     RSE_BADADDR = 7,
     RSE_NOPEER = 8,
     RSE_EVENT = 9,             /* libevent error.  */
@@ -68,7 +67,6 @@ enum rs_error_code {
     RSE_VENDOR_UNKNOWN = 42,
     RSE_CRED = 43,
     RSE_CERT = 44,
-    RSE_MAX = RSE_CERT
 };
 
 enum rs_conn_type {