Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'libradsec' into libradsec-server-support | Linus Nordberg | 2013-05-15 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/HACKING lib/Makefile.am lib/README lib/compat.h lib/conf.c lib/configure.ac lib/conn.c lib/conn.h lib/err.c lib/err.h lib/event.c lib/event.h lib/examples/Makefile.am lib/examples/client-blocking.c lib/examples/client.conf lib/include/radsec/radsec-impl.h lib/include/radsec/radsec.h lib/include/radsec/request-impl.h lib/include/radsec/request.h lib/packet.c lib/packet.h lib/peer.c lib/peer.h lib/request.c lib/send.c lib/tcp.c lib/tests/Makefile.am lib/tls.c lib/udp.c lib/util.c | ||||
| * | Revert "Add formal argument 'secret' to two public functions." | Linus Nordberg | 2013-05-08 | 1 | -2/+2 |
| | | | | | | | | | | | | | | This reverts commit 09d1cff2418a900b587b2113f508984f2417cc11. Conflicts: lib/include/radsec/request.h | ||||
* | | WIP commit moving towards working server support. | Linus Nordberg | 2013-05-15 | 1 | -2/+2 |
| | | |||||
* | | Revamping for listeners. | Linus Nordberg | 2013-03-01 | 1 | -6/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split rs_connection into rs_baseconn plus rs_connection and rs_listener. Connections now has a state variable. Connect buffer event and fd of _source_ connection, not that of conn->active_peer. The connection object referred to by a peer is not meant for using as a connection, only for reporting errors on. Make sure things are sane even when not using a config file. Bump library interface version to 1.0.0 since it's changed. | ||||
* | | Rename most 'package' to 'message'. | Linus Nordberg | 2013-01-24 | 1 | -9/+9 |
|/ | | | | | | | | | | | | | RADIUS (RFC2865) is defined to be transported over UDP so the term "radius packet" makes a lot of sense. RADIUS/TCP (RFC6613) and RADIUS/TLS (RFC6614), a.k.a. RadSec, use stream transport protocols though. The term "message" doesn't imply any kind of transport -- a message can be sent using datagrams as well as in a stream. This (large) commit changes 'package' to 'message' where it makes sense. It does not touch the 'radius' subdirectory. It includes preprocessor directives (#define) to make the public interface compatible with previous releases of the library. | ||||
* | Add some info on usage modes. | Linus Nordberg | 2013-01-23 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary #includes. | Linus Nordberg | 2013-01-22 | 1 | -5/+1 |
| | |||||
* | Add formal argument 'secret' to two public functions. | Linus Nordberg | 2012-12-17 | 1 | -2/+2 |
| | | | | | | | | | | The functions are rs_packet_create_authn_request() and rs_request_create_authn(). Attributes of type PW_USER_PASSWORD are supposed to be MD5 obfuscated (see vp2data_any()). NOTE: This is a non-backward compatible API change. | ||||
* | Example code: Print a little bit more helpful information on failure. | Linus Nordberg | 2012-12-17 | 1 | -1/+1 |
| | |||||
* | Example code: Don't create rs_error on failing context creation. | Linus Nordberg | 2012-12-17 | 1 | -4/+5 |
| | | | | We don't export err_create() and the error is ENOMEM nowadays. | ||||
* | Merge libradsec-new-client. | Linus Nordberg | 2012-04-27 | 1 | -7/+3 |
|\ | |||||
| * | remove rs_packet_frpkt | Luke Howard | 2011-11-14 | 1 | -3/+2 |
| | | |||||
| * | remove rs_context_init_freeradius_dict | Luke Howard | 2011-11-14 | 1 | -4/+0 |
| | | |||||
| * | port to new RADIUS client library | Luke Howard | 2011-11-14 | 1 | -1/+2 |
| | | |||||
* | | Handle failing rs_context_create(). | Linus Nordberg | 2012-04-26 | 1 | -1/+7 |
| | | |||||
* | | Be user friendly in example program. | Linus Nordberg | 2012-01-24 | 1 | -0/+9 |
| | | |||||
* | | Cosmetic changes. | Linus Nordberg | 2012-01-19 | 1 | -3/+4 |
|/ | | | | Better names of formal arguments in test program. | ||||
* | API AND CONFIG CHANGE: rs_context_create() doesn't take DICT any more. | Linus Nordberg | 2011-03-21 | 1 | -4/+10 |
| | | | | | | | Use rs_context_create() to read FreeRADIUS dictionary, possibly by taking dict file from configuration file. CONFIG CHANGE: s/config/realm/g. | ||||
* | Verify result in example program. Also, don't leak a package. | Linus Nordberg | 2011-03-14 | 1 | -1/+9 |
| | |||||
* | Don't double free in example code. | Linus Nordberg | 2011-03-13 | 1 | -6/+2 |
| | |||||
* | Change user name in example code. | Linus Nordberg | 2011-03-13 | 1 | -1/+1 |
| | |||||
* | examples/client-blocking: pull out the error before freeing conn. | Linus Nordberg | 2011-03-08 | 1 | -1/+3 |
| | |||||
* | Clean up struct rs_error somewhat. | Linus Nordberg | 2011-03-08 | 1 | -1/+1 |
| | | | | More to be done here! | ||||
* | examples/client-blocking.c: Clean up and improve error handling. | Linus Nordberg | 2011-03-07 | 1 | -37/+31 |
| | |||||
* | Rename relevant functions to reflect authn as opposed to authz. | Linus Nordberg | 2011-02-28 | 1 | -2/+2 |
| | | | | Also add a "bare" create request function. | ||||
* | API changes: rs_client* --> rs_peer. | Linus Nordberg | 2011-02-28 | 1 | -5/+5 |
| | | | | | Move peer (former server) things to new file peer.c. Update examples. | ||||
* | API change. Have the request object create its own request message. | Linus Nordberg | 2011-02-25 | 1 | -5/+5 |
| | |||||
* | Initialize pointer in example program before trusting it. | Linus Nordberg | 2011-02-04 | 1 | -5/+6 |
| | |||||
* | Pick usage of struct request in example code at run time. | Linus Nordberg | 2011-02-02 | 1 | -22/+28 |
| | |||||
* | Follow API changes. | linus | 2011-01-21 | 1 | -3/+3 |
| | |||||
* | "Thou shalt not follow the NULL pointer, for chaos and madness await | Linus Nordberg | 2010-10-28 | 1 | -6/+10 |
| | | | | thee at its end." | ||||
* | Have rad_decode() verify responses. | Luke Howard | 2010-10-11 | 1 | -4/+10 |
| | |||||
* | Rename rs_req_* --> rs_request_. | Linus Nordberg | 2010-10-10 | 1 | -2/+2 |
| | | | | Contributed by Luke Howard. | ||||
* | Rename struct rs_handle --> rs_context. | Linus Nordberg | 2010-10-05 | 1 | -1/+1 |
| | |||||
* | WIP -- reading configuration. | Linus Nordberg | 2010-10-04 | 1 | -13/+16 |
| | |||||
* | WIP | Linus Nordberg | 2010-10-03 | 1 | -4/+5 |
| | |||||
* | WIP | Linus Nordberg | 2010-10-03 | 1 | -9/+15 |
| | |||||
* | Rename the error functions. | Linus Nordberg | 2010-10-03 | 1 | -9/+9 |
| | |||||
* | WIP -- prepare for request objects. | Linus Nordberg | 2010-10-03 | 1 | -2/+17 |
| | |||||
* | WIP | Linus Nordberg | 2010-10-03 | 1 | -9/+0 |
| | |||||
* | WIP. | Linus Nordberg | 2010-10-02 | 1 | -1/+1 |
| | |||||
* | WIP | Linus Nordberg | 2010-10-02 | 1 | -0/+80 |