summaryrefslogtreecommitdiff
path: root/lib/conf.c
Commit message (Collapse)AuthorAge
* Implement disable_hostname_check config option.Linus Nordberg2013-10-03
| | | | Patch by Sam Hartman.
* Update copyright years.Linus Nordberg2013-05-09
|
* Handle case where config hasn't yet been read better.Linus Nordberg2013-01-23
| | | | Don't segfault is a good start.
* Rename COPYING -> LICENSE.Linus Nordberg2012-12-19
| | | | And distribute LICENSE and HACKING.
* Config docu.Linus Nordberg2012-12-18
|
* Merge libradsec-new-client.Linus Nordberg2012-04-27
|\
| * remove dictionary configuration parameterLuke Howard2011-11-14
| |
| * port to new RADIUS client libraryLuke Howard2011-11-14
| |
* | Use rs_strdup().Linus Nordberg2012-04-26
| |
* | Postpone resolving of DNS names of server.Linus Nordberg2012-04-25
| | | | | | | | | | | | | | | | | | | | We used to resolve DNS names when reading configuration. We now do it in event_init_socket() and cache the result in the connection object. The imminent need for changing this is to keep host names around for X509 certificate verification (CNAME and subjectAltName). This will also help later when we implement server failover (and later, when people want to do more dynamic configuration, f.ex. NAPTR).
* | Conditionally compile TLS-PSK code (--enable-tls-psk).Linus Nordberg2012-04-23
| | | | | | | | Also, allow for PSK-only configuration, i.e. don't barf on missing cert stuff.
* | Clarify comments about PSK string encoding.Linus Nordberg2012-02-01
| |
* | Implement TLS-PSK.Linus Nordberg2012-01-31
| |
* | Move a comment, for clarification.Linus Nordberg2012-01-24
| |
* | Add TLS PSK configuration options.Linus Nordberg2012-01-24
|/
* Cleanup conf.c.Linus Nordberg2011-07-03
| | | | | Don't promote a pointer to a boolean in if clauses. Compare strcmp to 0.
* Handle all libconfuse parse errors.Linus Nordberg2011-07-03
|
* Handle configuration errors better.Linus Nordberg2011-07-03
|
* (rs_context_destroy): Use free() rather than rs_free() for realm->name.Linus Nordberg2011-03-21
|
* API AND CONFIG CHANGE: rs_context_create() doesn't take DICT any more.Linus Nordberg2011-03-21
| | | | | | | Use rs_context_create() to read FreeRADIUS dictionary, possibly by taking dict file from configuration file. CONFIG CHANGE: s/config/realm/g.
* Handle an ENOMEM case in conf.c.Linus Nordberg2011-03-11
|
* Change default configuration to do RadSec rather than UDP.Linus Nordberg2011-03-09
|
* Rename and move around a few helper functions.Linus Nordberg2011-03-09
|
* Restructure code, moving most code out of packet.cLinus Nordberg2011-03-06
| | | | Also, move copyright notice out of COPYING and into every file.
* Don't free config object until we destroy the context.Linus Nordberg2011-03-06
|
* Do _copy_ the strings from the config object.Linus Nordberg2011-03-06
|
* Do free the config object.Linus Nordberg2011-03-06
|
* Config file changes and small API changes.Linus Nordberg2011-02-24
| | | | | | | | 'timeout' and 'tries' move from 'server' stanza to top. 'tries' is now 'retries'. Moving around in internal data structs, making struct peer strictly config. Bug fixes in configuration code. Adding some more cleanup code, freeing allocated memory (still not done!).
* Fix bug where one or two stanzas in a config file would be but not more.linus2011-01-21
| | | | Also restructure error handling in rs_context_create().
* Cosmetic changes to conf.c.linus2011-01-20
|
* Bringing up TLS connections working.Linus Nordberg2010-11-11
| | | | | | | NOTE: Clean up of resources not yet sane. Expect resource leakages. NOTE: Most failure cases are not handled properly. With the wind at your back and the sun shining, it might work.
* Don't ignore connection type configuration.Linus Nordberg2010-11-08
|
* Rename struct rs_handle --> rs_context.Linus Nordberg2010-10-05
|
* Rename top level token "realm" --> "config".Linus Nordberg2010-10-04
|
* WIP -- reading configuration.Linus Nordberg2010-10-04