summaryrefslogtreecommitdiff
path: root/lib/include/radsec/radsec-impl.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename and move around a few helper functions.Linus Nordberg2011-03-091-11/+4
|
* Timeout implemented in request objects, supported by TCP.Linus Nordberg2011-03-081-0/+1
| | | | TODO: UDP.
* Clean up struct rs_error somewhat.Linus Nordberg2011-03-081-1/+0
| | | | More to be done here!
* Move verification of response packets up to a level where it makes sense.Linus Nordberg2011-03-071-6/+8
| | | | | | | | | | | | | | | | | | | | | Replace the user_dispatch_flag on connections with conn_user_dispatch_p(). Remove the 'original' member from packet and instead have an upper layer verify. Rename packet valid_flag --> received_flag to reflect that we don't verify. Move _close_conn() --> conn_close(). Move packet flags into a single unsigned int, for portability. (_read_packet): Don't verify packet. (rs_conn_receive_packet): Don't touch PKT_OUT if there isn't a packet. (rs_conn_receive_packet): Verify packet using packet_verify_response().
* UDP w/o bufferevents, part 1.Linus Nordberg2011-03-061-3/+10
| | | | Sending, no retransmitting and no receiving.
* Don't free config object until we destroy the context.Linus Nordberg2011-03-061-0/+2
|
* Get rid of loopbreak as a mean for signalling successful packet handling.Linus Nordberg2011-02-251-0/+2
| | | | | | | | | | | | | In blocking mode, breaking the event loop with loopbreak will probably be needed for exceptions like timeout so we shouldn't use it for breaking the loop and signalling success. In the user callbaks used in blocking mode (_rcb and _wcb), disable read and write events on the event buffer. This will stop the loop. Also, set a flag in the packet struct to signal success. In the "low level callbacks" (_read_cb and _write_cb), enable read or write, accordingly.
* Config file changes and small API changes.Linus Nordberg2011-02-241-12/+14
| | | | | | | | '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!).
* Add extern "C" guards to all header files.Linus Nordberg2010-11-111-0/+8
|
* Bringing up TLS connections working.Linus Nordberg2010-11-111-0/+12
| | | | | | | 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.
* Have rad_decode() verify responses.Luke Howard2010-10-111-0/+1
|
* Request object implementation and bug fixes by Luke Howard.Linus Nordberg2010-10-111-0/+1
|
* Robustness fixes (and some callback invocation) by Luke Howard.Linus Nordberg2010-10-101-0/+2
| | | | | | | | | | | | * lib/packet.c (_packet_create): Set packet identity properly. (_do_send): Return an int. (_do_send): Don't ignore rad_encode() errors. (_do_send): Do invoke rad_sign(). (_event_cb): Invoke callbacks. (_event_cb): Honour _do_send() return code. (_read_cb): Check packet (by invoking rad_packet_ok()). (_read_cb): Don't ignore rad_decode() errors. (_read_cb): Invoke callbacks.
* Rename struct rs_handle --> rs_context.Linus Nordberg2010-10-051-9/+14
|
* WIP -- reading configuration.Linus Nordberg2010-10-041-0/+8
|
* WIPLinus Nordberg2010-10-031-0/+1
|
* WIPLinus Nordberg2010-10-031-8/+13
|
* WIPLinus Nordberg2010-10-031-1/+1
|
* WIPLinus Nordberg2010-10-031-2/+2
|
* WIP.Linus Nordberg2010-10-021-0/+88