Docu: Fix libevent url.
[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 - libevent2
17 - libconfuse
18 - openssl (if configured with --enable-tls)
19
20
21 To compile the library and the examples, do something like
22
23  sh autogen.sh && ./configure && make
24
25 If any of the libraries are not found, try setting environment
26 variable LDFLAGS at configure time like so:
27
28  LDFLAGS="-L/usr/local/lib" ./configure --enable-tls
29
30
31 The parts of the library which has been tested has been so on Linux
32 (Ubuntu 10.10) with libfreeradius2 (2.1.9+dfsg-1ubuntu1), libconfuse0
33 (2.7-1) and libevent-2.0.10-stable (http://libevent.org/).
34
35 The file HACKING contains more detailed info on the state of the
36 various parts of the library.