c8ea1893f41d0a78dca0362b0230795ed9c15cb1
[libradsec.git] / lib / README
1 libradsec is a RADIUS library for clients doing RADIUS over UDP or
2 TLS.  The goal is to add support for writing servers (and thus
3 proxies) and to add transports TCP and DTLS.
4
5
6 The canonical pickup point is
7 http://git.nordu.net/?p=radsecproxy.git;a=shortlog;h=refs/heads/libradsec
8
9
10 The source code is licensed under two different licenses, a 3-clause
11 BSD license and the GNU General Public License (version 2 or later).
12 Users of this library may choose which of these suits them best.
13
14
15 libradsec depends on 
16 - libradius from the FreeRADIUS freeradius-server
17 - libevent2
18 - libconfuse
19 - openssl (if configured with --enable-tls)
20
21
22 To compile the library and the examples, do something like
23
24  sh autogen.sh && ./configure && make
25
26 If any of the libraries are not found, try setting environment
27 variable LDFLAGS at configure time like so:
28
29  LDFLAGS="-L/usr/lib/freeradius -L/usr/local/lib" ./configure --enable-tls
30
31
32 The parts of the library which has been tested has been so on Linux
33 (Ubuntu 10.10) with libfreeradius2 (2.1.9+dfsg-1ubuntu1), libconfuse0
34 (2.7-1) and libevent-2.0.10-stable (http://monkey.org/~provos/).
35
36 The file HACKING contains more detailed info on the state of the
37 various parts of the library.