> - mod_ssl (openssl?) does not obey the maximum fragmentation
>  length requested by the clients

I think that this has been fixed in openssl 1.0.0.a.

Monkey curiosity: why do you need it?

> - install 'apache2-dbg'
> - enter gdb with the above command line
> - run (in gdb)
> - break gdb when the modules have been loaded
> - set the breakpoint and continue with debugging
>
> PS: anyway to automate the above procedure, esp. a breakpoint
>    when all modules have been loaded?

$ cat > gdb.conf
b ap_run_post_config
r
b your_function
c
$ gdb -x gdb.conf --args /path/to/httpd -X

But mostly you place the breakpoint once manually, then restart the
server (`r` or `run`) when you recompile your module.

Reply via email to