Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
radsecproxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eduroam
radsecproxy
Commits
c6d33673
Commit
c6d33673
authored
Apr 26, 2012
by
Linus Nordberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add configure option --enable-experimental-dyndisc.
parent
8c8d6467
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
ChangeLog
ChangeLog
+5
-2
configure.ac
configure.ac
+16
-0
No files found.
ChangeLog
View file @
c6d33673
2011-04-
17
1.6-rc0
2011-04-
26
1.6-rc0
Incompatible changes:
- The default shared secret for TLS and DTLS connections change
from "mysecret" to "radsec" as per draft-ietf-radext-radsec-12
...
...
@@ -19,7 +19,10 @@
- New config option PidFile. (RADSECPROXY-32)
- Preliminary support for DynamicLookupCommand added. It's for
TLS servers only at this point. Also, beware of risks for memory
leaks.
leaks. In addition to this, for extra adventurous users, there's
a new configure option --enable-experimental-dyndisc which enables
even more new code for handling of dynamic discovery of TLS
servers.
- Address family (IPv4 or IPv6) can now be specified for clients
and servers. (RADSECPROXY-37)
...
...
configure.ac
View file @
c6d33673
...
...
@@ -100,6 +100,22 @@ if test "x$dtls" = "xyes" ; then
TARGET_CFLAGS="$TARGET_CFLAGS -DRADPROT_DTLS"
fi
AC_ARG_ENABLE(
experimental_dyndisc,
AC_HELP_STRING([--enable-experimental-dyndisc],
[enable experimental code for dynamic discovery [default=no]]),
[case $enableval in
yes|no) ;;
*) AC_MSG_ERROR([bad value $enableval for --enable-experimental-dyndisc, need yes or no]) ;;
esac],
[enable_experimental_dyndisc=no])
if test "$enable_experimental_dyndisc" = "yes"; then
AC_DEFINE([ENABLE_EXPERIMENTAL_DYNDISC], [1])
fi
AM_CONDITIONAL(ENABLE_EXPERIMENTAL_DYNDISC,
test "$enable_experimental_dyndisc" = "yes")
AC_ARG_VAR([DOCBOOK2X_MAN], [docbook2x-man])
AC_CHECK_PROG([DOCBOOK2X_MAN], [docbook2x-man], [yes])
AM_CONDITIONAL(HAVE_DOCBOOK2X_MAN, test "$DOCBOOK2X_MAN" = "yes")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment