summaryrefslogtreecommitdiff
path: root/lib/rsp_tlscommon.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement cert verification.Linus Nordberg2012-04-261-116/+3
| | | | NOTE: Not used yet.
* Conditionally compile TLS-PSK code (--enable-tls-psk).Linus Nordberg2012-04-231-8/+9
| | | | Also, allow for PSK-only configuration, i.e. don't barf on missing cert stuff.
* lib/rsp_tlscommon.c: Include sys/types.h before netinet/in.h.Linus Nordberg2011-05-231-1/+1
|
* Improve protocol robustness and invoke user callbacks.Linus Nordberg2011-02-191-3/+0
| | | | | | | | | | | | 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.
* Bringing up TLS connections working.Linus Nordberg2010-11-111-0/+664
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.