Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Requests are now high level, i.e. not for user doing the dispatching. | Linus Nordberg | 2011-03-07 | 1 | -60/+7 |
| | |||||
* | Move verification of response packets up to a level where it makes sense. | Linus Nordberg | 2011-03-07 | 6 | -90/+125 |
| | | | | | | | | | | | | | | | | | | | | | 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(). | ||||
* | Formatting changes. | Linus Nordberg | 2011-03-07 | 3 | -6/+8 |
| | |||||
* | Remove lib/radsec.h. | Linus Nordberg | 2011-03-07 | 1 | -9/+0 |
| | | | | | 1. Two radsec.h is icky. 2. Its contents fit nicely in send.c. | ||||
* | Move event_set_timeout --> tcp_set_connect_timeout. | Linus Nordberg | 2011-03-06 | 4 | -38/+38 |
| | |||||
* | request: Save callers user_data and do invoke callers callbacks. | Linus Nordberg | 2011-03-06 | 2 | -9/+31 |
| | |||||
* | Replace asserts with EINVAL checks. | Linus Nordberg | 2011-03-06 | 1 | -9/+3 |
| | |||||
* | Restructure code, moving most code out of packet.c | Linus Nordberg | 2011-03-06 | 26 | -789/+931 |
| | | | | Also, move copyright notice out of COPYING and into every file. | ||||
* | UDP w/o bufferevents, part 1. | Linus Nordberg | 2011-03-06 | 7 | -86/+233 |
| | | | | Sending, no retransmitting and no receiving. | ||||
* | Cosmetic changes. | Linus Nordberg | 2011-03-06 | 1 | -5/+5 |
| | |||||
* | Don't free config object until we destroy the context. | Linus Nordberg | 2011-03-06 | 3 | -10/+25 |
| | |||||
* | Revert 578e3551 -- double free in second invocation of dict_free(). | Linus Nordberg | 2011-03-06 | 1 | -1/+0 |
| | |||||
* | Do _copy_ the strings from the config object. | Linus Nordberg | 2011-03-06 | 1 | -4/+4 |
| | |||||
* | Do free the config object. | Linus Nordberg | 2011-03-06 | 1 | -0/+1 |
| | |||||
* | _init_evb: Don't crash on socket errors. | Linus Nordberg | 2011-03-03 | 3 | -2/+13 |
| | |||||
* | Correct an error code. | Linus Nordberg | 2011-03-03 | 1 | -1/+3 |
| | |||||
* | Correct an error string. | Linus Nordberg | 2011-03-03 | 1 | -1/+1 |
| | |||||
* | Be consistent with naming of formal arguments. | Linus Nordberg | 2011-03-02 | 1 | -1/+1 |
| | |||||
* | Error handling cleanup 3. | Linus Nordberg | 2011-03-01 | 3 | -4/+6 |
| | | | | Split timeout errors in connecting and I/O. | ||||
* | Error handling cleanup 2. | Linus Nordberg | 2011-03-01 | 3 | -12/+9 |
| | | | | RSE_NOSYS doesn't need a string. | ||||
* | Error handling cleanup | Linus Nordberg | 2011-03-01 | 5 | -20/+18 |
| | | | | | Remove RSE_SOME_ERROR. rs_tls_init: Push SSL error stack on libradsec error stack. | ||||
* | rs_context_destroy: Free freeradius dictionary. | Linus Nordberg | 2011-03-01 | 1 | -0/+1 |
| | |||||
* | Don't have the connection freeing peers -- it's the contexts responsibility. | Linus Nordberg | 2011-03-01 | 2 | -9/+3 |
| | | | | Also, let _rs_peer_destroy() free secret. | ||||
* | rs_request_send: Check arguments and that we have a packet to send. | Linus Nordberg | 2011-03-01 | 1 | -0/+3 |
| | |||||
* | Add RSE_INVAL. | Linus Nordberg | 2011-03-01 | 2 | -1/+2 |
| | |||||
* | Add asserts to request object. | Linus Nordberg | 2011-02-28 | 1 | -1/+4 |
| | |||||
* | Update status in HACKING. | Linus Nordberg | 2011-02-28 | 1 | -15/+16 |
| | |||||
* | Make tests run again. | Linus Nordberg | 2011-02-28 | 2 | -5/+30 |
| | | | | NOTE: 2 exceptions ATM. | ||||
* | Remove last trace of server and client in API. | Linus Nordberg | 2011-02-28 | 2 | -8/+8 |
| | |||||
* | Rename relevant functions to reflect authn as opposed to authz. | Linus Nordberg | 2011-02-28 | 5 | -16/+38 |
| | | | | Also add a "bare" create request function. | ||||
* | API changes: rs_client* --> rs_peer. | Linus Nordberg | 2011-02-28 | 5 | -74/+83 |
| | | | | | Move peer (former server) things to new file peer.c. Update examples. | ||||
* | Cosmetic header file changes. | Linus Nordberg | 2011-02-28 | 2 | -29/+43 |
| | |||||
* | Time out on connect and break event loop on errors. | Linus Nordberg | 2011-02-25 | 1 | -0/+48 |
| | |||||
* | API change. Have the request object create its own request message. | Linus Nordberg | 2011-02-25 | 4 | -18/+22 |
| | |||||
* | Get rid of loopbreak as a mean for signalling successful packet handling. | Linus Nordberg | 2011-02-25 | 2 | -29/+16 |
| | | | | | | | | | | | | | 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 Nordberg | 2011-02-24 | 8 | -137/+252 |
| | | | | | | | | '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!). | ||||
* | Split example config in two files. | Linus Nordberg | 2011-02-24 | 2 | -0/+24 |
| | |||||
* | Split example config in two files. | Linus Nordberg | 2011-02-24 | 1 | -30/+0 |
| | |||||
* | Report SSL errors with error string rather than an integer. | Linus Nordberg | 2011-02-20 | 1 | -1/+1 |
| | |||||
* | Push an ENOMEM error on the connection rather than the context. | Linus Nordberg | 2011-02-20 | 1 | -4/+4 |
| | |||||
* | Handle another ENOMEM case. | Linus Nordberg | 2011-02-20 | 1 | -2/+5 |
| | |||||
* | Improve protocol robustness and invoke user callbacks. | Linus Nordberg | 2011-02-19 | 9 | -169/+343 |
| | | | | | | | | | | | | All aborts are removed, as well as all asserts which aren't programming errors. When an invalid packet is received, the connection is closed, as per draft-ietf-radext-tcp-transport-08 (2.6.4). Use new rs_debug() macro rather than fprintf() for debug printouts. Coding style overhaul. | ||||
* | Use AM_CFLAGS when setting CFLAGS. | Linus Nordberg | 2011-02-19 | 2 | -2/+2 |
| | |||||
* | Merge branch 'libradsec' of /tmp/radsecproxy into libradsec | Linus Nordberg | 2011-02-15 | 1 | -1/+1 |
|\ | |||||
| * | Include debug.h regardless if DEBUG -- rs_debug needs to be declared. | Linus Nordberg | 2011-02-15 | 1 | -1/+1 |
| | | |||||
* | | Add comments. | Linus Nordberg | 2011-02-15 | 1 | -1/+3 |
|/ | |||||
* | Make autogen.sh actually work -- were missing ltmain.sh. | Linus Nordberg | 2011-02-15 | 7 | -2/+13158 |
| | | | | | | Add Automake/Libtool files to biuld-aux and set AC_CONFIG_AUX_DIR. Use LT_INIT rather than deprecated AC_PROG_LIBTOOL. | ||||
* | Do build examples with -Wall -g. | Linus Nordberg | 2011-02-04 | 1 | -2/+2 |
| | |||||
* | Add comments on some error codes. | Linus Nordberg | 2011-02-04 | 1 | -4/+4 |
| | |||||
* | Initialize pointer in example program before trusting it. | Linus Nordberg | 2011-02-04 | 1 | -5/+6 |
| |