File: bugs

package info (click to toggle)
freeradius 1.0.2-4sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,792 kB
  • ctags: 6,980
  • sloc: ansic: 52,618; sh: 9,731; php: 5,764; perl: 2,309; makefile: 1,056; sql: 730; python: 159; tcl: 33; sed: 23
file content (60 lines) | stat: -rw-r--r-- 1,833 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
( The FreeRADIUS web site is at <URL: http://www.freeradius.org/>, and
most information referenced in this document can be found there.

This is primarily for non-developers of the FreeRADIUS server.  If you are
able to patch the code to work correctly, then we invite you to join the 
development list to discuss it.  If you're the type who know little about
how to code, then this is the place for you!


= So you think you've found a bug in the FreeRADIUS server

You should first discuss it on the users list, to see if anyone can
reproduce it.  Often there's a simple explanation of why the server
behaves as it does, and it's not necessarily a bug in the code, so
browse the lists' archives of the last two months, and if you don't
see messages about it, ask!

If the behavior is correct but confusing, we think that's a bug too, and
you should file a bug against our documentation.


= Looking at core dumps

If the server, or one of the accompyaning programs core dumps, then
you should rebuild the server as follows:

$ ./configure --enable-developer
$ make
$ make install

  and then run the program again.  You may have to to enable core
  dumps, via:

$ ulimit -c unlimited

  When it core dumps, do:

$ gdb /path/to/executable /path/to/core/file

  And then in 'gdb', do:

$ bt

  Copy the output, and mail it to the list, along with the name of the
program you were running, and the name of the operating system.
Without this information, it's impossible for anyone to know why the
program core dumped.


  You can also submit the information to the bug database at:

	http://bugs.freeradius.org/

  Submitting it to the bug database ensures that the bug report won't
get forgotten, and that someone will eventually respond to it.

--

FreeRADIUS Project, copyright 2004
$Id: bugs,v 1.5 2004/04/15 19:39:17 aland Exp $