diff options
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | radsecproxy.c | 4 |
4 files changed, 22 insertions, 6 deletions
@@ -15,7 +15,7 @@ matchCertificateAttribute now also supports CN matching Forwarding of accounting messages, accountingServer option for realms Supports multiple client blocks for same source address with different - certificate checks + certificate checks Removed weekday from log timestamps 2008-07-24 1.1 Logging stationid attribute @@ -24,3 +24,19 @@ Options for RetryCount and RetryInterval Working accounting and AccountingResponse option CRL checking and option for enabling it +2008-10-07 1.2 + listenTCP and sourceTCP options renamed to listenTLS and sourceTLS + Old options deprecated but available for backwards compatiblity + Logging reply-message attribute from Reject messages + Contribution from Arne Schwabe + Rewrite blocks have new options addAttribute and modifyAttribute + rewriteIn (replacing rewrite) and rewriteOut in client and server + blocks for specifying rewrite on input/output. rewrite deprecated + but available as an alias for rewriteIn for backwards compatibility. + rewritein rewriteout rewrite + regular expressions in realms etc can now be more advanced, including + use of "or". + cacheExpiry option in tls blocks for specifying expiry time for the + cache of CA certificates and CRLs. This is particularly useful for + regularly updating CRLs. + Some logging has been made more informative @@ -1,4 +1,4 @@ -This is radsecproxy 1.1 +This is radsecproxy 1.2 radsecproxy is a generic RADIUS proxy that can support various RADIUS clients over UDP or TLS (RadSec). @@ -37,4 +37,4 @@ let me know if you feel left out. For more information, feedback etc. please see the information at http://software.uninett.no/radsecproxy/ -Stig Venaas <venaas@uninett.no> -- 2008.07.24 +Stig Venaas <venaas@uninett.no> -- 2008.10.07 diff --git a/configure.ac b/configure.ac index e9b3b0d..e133cfa 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(radsecproxy, 1.1, venaas@uninett.no) +AC_INIT(radsecproxy, 1.2, venaas@uninett.no) AM_INIT_AUTOMAKE AC_PROG_CC AM_PROG_CC_C_O diff --git a/radsecproxy.c b/radsecproxy.c index da611a0..577f019 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -3435,7 +3435,7 @@ void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *pretend, uint8 *pretend = 1; break; case 'v': - debugx(0, DBG_ERR, "radsecproxy 1.1"); + debugx(0, DBG_ERR, "radsecproxy 1.2"); default: goto usage; } @@ -3519,7 +3519,7 @@ int main(int argc, char **argv) { debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno)); debug_timestamp_on(); - debug(DBG_INFO, "radsecproxy 1.1 starting"); + debug(DBG_INFO, "radsecproxy 1.2 starting"); sigemptyset(&sigset); /* exit on all but SIGPIPE, ignore more? */ |