[sr-dev] git:4.4:22ac262c: Revert "auth_radius Remove SVN ID's and history comments"

Olle E. Johansson oej at edvina.net
Fri Apr 1 20:29:06 CEST 2016


Module: kamailio
Branch: 4.4
Commit: 22ac262cc88cdb78fba1329333412c7f7447128f
URL: https://github.com/kamailio/kamailio/commit/22ac262cc88cdb78fba1329333412c7f7447128f

Author: Olle E. Johansson <oej at edvina.net>
Committer: Olle E. Johansson <oej at edvina.net>
Date: 2016-04-01T20:26:20+02:00

Revert "auth_radius Remove SVN ID's and history comments"

This reverts commit 706e58ff60003a6dca09ad79efef7f1a423d232e.

---

Modified: modules/auth_radius/authorize.c
Modified: modules/auth_radius/authorize.h
Modified: modules/auth_radius/authrad_mod.c
Modified: modules/auth_radius/authrad_mod.h
Modified: modules/auth_radius/sterman.c
Modified: modules/auth_radius/sterman.h

---

Diff:  https://github.com/kamailio/kamailio/commit/22ac262cc88cdb78fba1329333412c7f7447128f.diff
Patch: https://github.com/kamailio/kamailio/commit/22ac262cc88cdb78fba1329333412c7f7447128f.patch

---

diff --git a/modules/auth_radius/authorize.c b/modules/auth_radius/authorize.c
index 38e6579..f9c45dd 100644
--- a/modules/auth_radius/authorize.c
+++ b/modules/auth_radius/authorize.c
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -20,6 +22,10 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ * 2003-03-09: Based on authorize.c from radius_auth (janakj)
+ * 2006-03-01: pseudo variables support for domain name (bogdan)
  */
 
 
diff --git a/modules/auth_radius/authorize.h b/modules/auth_radius/authorize.h
index f21d827..213b188 100644
--- a/modules/auth_radius/authorize.h
+++ b/modules/auth_radius/authorize.h
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -19,6 +21,9 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ * 2003-03-09: Based on authorize.h from radius_auth (janakj)
  */
 
 #ifndef AUTHORIZE_H
diff --git a/modules/auth_radius/authrad_mod.c b/modules/auth_radius/authrad_mod.c
index 4e67b3c..94ca865 100644
--- a/modules/auth_radius/authrad_mod.c
+++ b/modules/auth_radius/authrad_mod.c
@@ -1,4 +1,6 @@
 /* 
+ * $Id$ 
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -19,6 +21,13 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ *  2003-03-09: Based on auth_mod.c from radius_auth (janakj)
+ *  2003-03-11: New module interface (janakj)
+ *  2003-03-16: flags export parameter added (janakj)
+ *  2003-03-19: all mallocs/frees replaced w/ pkg_malloc/pkg_free (andrei)
+ *  2006-03-01: pseudo variables support for domain name (bogdan)
  */
 
 
diff --git a/modules/auth_radius/authrad_mod.h b/modules/auth_radius/authrad_mod.h
index da03950..ac8fe01 100644
--- a/modules/auth_radius/authrad_mod.h
+++ b/modules/auth_radius/authrad_mod.h
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -19,6 +21,9 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ * 2003-03-09: Based on auth_mod.h from radius_authorize (janakj)
  */
 
 
diff --git a/modules/auth_radius/sterman.c b/modules/auth_radius/sterman.c
index 32dea0f..f95fdbc 100644
--- a/modules/auth_radius/sterman.c
+++ b/modules/auth_radius/sterman.c
@@ -1,4 +1,6 @@
 /* 
+ * $Id$
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -19,6 +21,12 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ * 2003-03-09: Based on digest.c from radius_auth module (janakj)
+ * 2005-07-08: Radius AVP may contain any kind of Kamailio AVP - ID/name or
+ *             int/str value (bogdan)
+ * 2005-07-08: old RPID RADIUS AVP compatibility droped (bogdan)
  */
 
 
diff --git a/modules/auth_radius/sterman.h b/modules/auth_radius/sterman.h
index 9e526b7..69ead9e 100644
--- a/modules/auth_radius/sterman.h
+++ b/modules/auth_radius/sterman.h
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ *
  * Digest Authentication - Radius support
  *
  * Copyright (C) 2001-2003 FhG Fokus
@@ -19,6 +21,9 @@
  * along with this program; if not, write to the Free Software 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
+ * History:
+ * -------
+ * 2003-03-09: Based on auth_mod.h from radius_authorize (janakj)
  */
 
 #ifndef STERMAN_H




More information about the sr-dev mailing list