Revision
862 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 5 04:33:38 2007 UTC
(19 years, 4 months ago)
by
db
Original Path:
ircd-hybrid/libio
Diff to
previous 852
,
to
selected 281
- move buf_cb_sendto_one() into send.c from strbuf
- add kludge to Makefile to force strbuf.o functions to be linked into ircd
- add temp kludges to deny. and kill.c to allow ircd to link (FIX!!!)
- Finally! modify m_names.c to use strbuf
Revision
640 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 7 10:41:00 2006 UTC
(20 years, 1 month ago)
by
michael
Original Path:
ircd-hybrid/libio
Diff to
previous 638
,
to
selected 281
- Replaced several strchr(x, '*'), etc. with hash_wildcard()
- Removed useless collapse() call in hunt_server(). It's match()'s job
to deal with multiple ***. No need to re-copy the entire string again.
Revision
613 -
Directory Listing
-
[select for diffs]
Modified
Fri May 19 09:23:10 2006 UTC
(20 years, 2 months ago)
by
michael
Original Path:
ircd-hybrid/libio
Diff to
previous 612
,
to
selected 281
- Got rid of several pointless irc_getnameinfo() calls in places where we
can simply use client->sockhost.
- Removed contrib/m_ltrace.c. Use TRACE instead.
- Fixed compile errors in m_gline.c and m_info.c
Revision
543 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 3 15:18:11 2006 UTC
(20 years, 3 months ago)
by
michael
Original Path:
ircd-hybrid/libio
Diff to
previous 524
,
to
selected 281
- "deglobalized" heap_list and added block_heap_get_heap_list() instead.
Note that block_heap_get_heap_list is a const function and the data pointed
by it can't and should never be modified externally.
Revision
459 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 12 22:21:37 2006 UTC
(20 years, 5 months ago)
by
db
Original Path:
ircd-hybrid/libio
Diff to
previous 446
,
to
selected 281
- If DNS server gives us a NXDOMAIN, we should give up trying to resolve
this host if doing IPV4, if doing IPV6, NXDOMAIN might mean that a hostname
might not be available under AAAA but A record might be worth a shot.
Revision
364 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 8 15:39:24 2006 UTC
(20 years, 6 months ago)
by
michael
Original Path:
ircd-hybrid/libio
Diff to
previous 363
,
to
selected 281
- Entirely changed the way of ban match processing to be more cleaner.
It also should nicely speed up matching of pure ip (may include cidr mask)
bans.
- Removed match_cidr() which is now not longed needed
- Add back some prototypes to res.h to fix compile errors
Revision
153 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 17 21:20:34 2005 UTC
(20 years, 9 months ago)
by
adx
Original Path:
ircd-hybrid/libio
Diff to
previous 152
,
to
selected 281
- 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
Original Path:
ircd-hybrid/libio
Diff to
previous 107
,
to
selected 281
- 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
86 -
Directory Listing
-
[select for diffs]
Modified
Wed Oct 5 20:36:04 2005 UTC
(20 years, 9 months ago)
by
adx
Original Path:
ircd-hybrid/libio
Diff to
previous 85
,
to
selected 281
* 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, 9 months ago)
by
adx
Original Path:
ircd-hybrid/libio
Diff to
previous 77
,
to
selected 281
- 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
61 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 3 21:20:41 2005 UTC
(20 years, 9 months ago)
by
adx
Original Path:
ircd-hybrid/libio
Diff to
previous 60
,
to
selected 281
- 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.