Revision
177 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 22 09:05:05 2005 UTC
(20 years, 9 months ago)
by
michael
Diff to
previous 175
,
to
selected 62
- Bind uses a semicolon as commentcharacter for resolv.conf. Let's
deal with it properly
- Do some logging if we skipped any namserver because we reached the max
of allowed servers
Revision
153 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 17 21:20:34 2005 UTC
(20 years, 9 months ago)
by
adx
Diff to
previous 152
,
to
selected 62
- compile libio as a dll on win32
- next step is compiling the whole ircd as a dll to export its symbols
- after that, we'll be able to support loadable *.dll modules.
NOTE: m_operspy.c doesn't compile now (error at localClient->iline)
Revision
152 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 17 01:48:08 2005 UTC
(20 years, 9 months ago)
by
db
Diff to
previous 107
,
to
selected 62
- res.c would send out hundreds? of retry requests on clients that
did not resolve, i.e. SERVFAIL. The code was essentailly ignoring
SERVFAIL hence generating request after request after request.
This appears to fix this major bug. It would be a good idea to add
some logging here however.
Revision
89 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 6 21:22:58 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 87
,
to
selected 62
- added dynamically extensible conf parser (compiles ok); enough to start
modularising general{} -> general.c, auth{} -> auth.c and so on.
Revision
86 -
Directory Listing
-
[select for diffs]
Modified
Wed Oct 5 20:36:04 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 85
,
to
selected 62
* attached misc/tools.c to misc/list.c,
this should really have been done earlier.
* moved mem_frob() to memory.c
* single libio_init() instead of all startup functions;
btw, I don't know if ircd's still able to boot ..
Revision
78 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 4 21:16:00 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 77
,
to
selected 62
- further win32 fixes, use ircd_signal.c interface (signals are wrapped
around WM_USER's wParam)
- note that the callback for WM_SIGNAL (ie WM_USER) defined in libio is
independent from the ircd, ie variable dispatch_wm_signal is set in
ircd_signal.c.
- now it compiles, to do: turn libio into a DLL to allow symbol references
in m_*.dll protocol modules.
Revision
69 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 4 16:09:51 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 68
,
to
selected 62
- splitted ircd/libio, all headers connected with libio sources have been
moved for internal use only. To use libio interface, include "libio.h"
(which is already done in "stdinc.h")
Revision
62 -
Directory Listing
-
[selected]
Modified
Mon Oct 3 22:23:39 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 61
- reorganisation goes on, removed external references from libio/mem
Revision
61 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 3 21:20:41 2005 UTC
(20 years, 10 months ago)
by
adx
Diff to
previous 60
,
to
selected 62
- split libio Makefiles for easier maintenance
- moved pcre.h to main include/ as it is currently a part
of libio interface (in the future all such headers should
be moved to libio/ and integrated...)
Now, libio components like comm, misc etc. should be as independent
as possible (from the rest of ircd and from each other), to allow
easy reuse in other software and to keep the interface clean.